#!/usr/bin/ruby
#
## https://rosettacode.org/wiki/Enumerations
#
enum {Apple, Banana, Cherry}; # numbered 0 through 2
say Apple;
say Banana;
say Cherry;
#!/usr/bin/ruby
#
## https://rosettacode.org/wiki/Enumerations
#
enum {Apple, Banana, Cherry}; # numbered 0 through 2
say Apple;
say Banana;
say Cherry;