Help for this page

Select Code to Download


  1. or download this
    my $first;
    my $second;
    ...
       $second = Second();
       $third  = Third();
    }
    
  2. or download this
    sub First  {                          ... }
    sub Second { our $first;              ... }
    ...
       local our $second = Second();
       local our $third  = Third();
    }
    
  3. or download this
    our $first;
    our $second;
    ...
       local $second = Second();
       local $third  = Third();
    }
    
  4. or download this
    sub First  { ... }
    sub Second { ... }
    ...
       $o->Second();
       $o->Third();
    }
    
  5. or download this
    sub First  { ... }
    sub Second { ... }
    ...
       Second(\%h);
       Third(\%h);
    }