Help for this page

Select Code to Download


  1. or download this
    my $var;
    BEGIN {
       $var = ...;
    }
    
  2. or download this
    my $var = "some value";
    ...
    code that uses $var
    ...
    
  3. or download this
    my $var = "some value";
    BEGIN {
    ...
       code that uses $var
       ...
    }
    
  4. or download this
    my $var;
    BEGIN {
    ...
       code that uses $var
       ...
    }
    
  5. or download this
    my $var; BEGIN { $var = "some value"; }
    
    ...
       code that uses for $var
       ...
    }