Help for this page

Select Code to Download


  1. or download this
    use constant {
        zed=>0,
    ...
        two=>2,
    };
    use constant repos=>(qw(oss non-oss debug));
    
  2. or download this
    use constant {
        zed=>0,
    ...
        # to create a constant array, it has to be in a separate `use cons
    +tant` line; 
        # do not try to optimize this back into the `use constant {...}` b
    +ecause it won't work!  
        # Really, I mean it!