Help for this page

Select Code to Download


  1. or download this
    BEGIN {
      my $constants = (
        FOO => 'foo',
    ...
      }
      ...
    }</blockquote>
    
  2. or download this
    BEGIN {
        require constant;
        my %constants = (
    ...
            constant->import( $name => $constants{$name} );
        }
    }