Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "1st list of enums: ", join(', ',  inv, tut, up,      file    ),
    + "\n";
    print "2nd list of enums: ", join(', ',  Enum::A,  Enum::B, Enum::E ),
    + "\n";
    
  2. or download this
    1st list of enums: 0, 1, 11, 12
    2nd list of enums: 10, 8, 2