Help for this page

Select Code to Download


  1. or download this
    {
        my $state_var;
        sub foo { ...; }
        sub bar { ...; }
    }
    
  2. or download this
    sub foo { state $state_var; ...; }
    sub bar { state $state_var; ...; }