Help for this page

Select Code to Download


  1. or download this
    sub outer {
     ...
    ...
     }
     ...
    }
    
  2. or download this
    {
      my $hidden_data;
    ...
       ...
      }
    }
    
  3. or download this
    sub outer {
      my $lexical = ...;
    ...
      #or even
      return $inner;
    }
    
  4. or download this
    my $hash{key} = ...; # is illegal
    local $hash{$key} = ...; # is legal
    ...
    my $x = 1;
    {
      local $x = 2; # is illegal. Can't localize a lexical variable
    
  5. or download this
    our $variable = 15;
    
    ...
    
    one();
    two();
    
  6. or download this
    our $variable = 15;
    
    ...
    
    one();
    two();