Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    use constant BAR => 3;
    use constant FOO => 2, BAZ => 1, JAPH => 0;
    print BAZ,$/;
    
  2. or download this
    use constant {
        FOO  => 3,
        BAR  => 2,
        BAR  => 1,
        JAPH => 0,
      };