RosettaCodeData/Task/Enumerations/Raku/enumerations.raku
2023-07-01 13:44:08 -04:00

8 lines
181 B
Raku

enum Fruit <Apple Banana Cherry>; # Numbered 0 through 2.
enum ClassicalElement (
Earth => 5,
'Air', # gets the value 6
'Fire', # gets the value 7
Water => 10,
);