Enumerations: Difference between revisions

m
(Added PowerShell)
Line 829:
 
=={{header|Perl 6}}==
{{works with|Rakudo|#21 "Seattle"2016.01}}
 
<lang perl6>enum Fruit <Apple Banana Cherry>; # Numbered 0 through 2.
Line 835:
enum ClassicalElement (
Earth => 5,
'Air', # Getsgets the value 6.
'Fire => 'hot', # gets the value 7
Water => 'wet'10,
);</lang>
 
2,392

edits