Help for this page

Select Code to Download


  1. or download this
    package My::Config;
    
    ...
    sub VARIABLE2 () { [ 'a', 'b', 'c' ] }
    
    1;
    
  2. or download this
    use My::Config;
    my $var1 = My::Config::VARIABLE1;
    
  3. or download this
    use My::Config;   # Actually, 
    my $var = 'variable value';
    
  4. or download this
    my $var1 = My::Config::VAR1;