RosettaCodeData/Task/Enumerations/Perl-6/enumerations.pl6

9 lines
181 B
Raku
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
enum Fruit <Apple Banana Cherry>; # Numbered 0 through 2.
enum ClassicalElement (
Earth => 5,
2016-12-05 22:15:40 +01:00
'Air', # gets the value 6
'Fire', # gets the value 7
Water => 10,
2013-04-10 22:43:41 -07:00
);