RosettaCodeData/Task/Enumerations/Raku/enumerations.raku

9 lines
181 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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,
);