Help for this page

Select Code to Download


  1. or download this
    {
       my %state;
    ...
       }
    }
    
  2. or download this
    sub rec_helper {
        my %state;
    ...
        };
    }
    
  3. or download this
    sub recursive {
        my( $state, $arg ) = @_;
    ...
        my %state;
        return recursive( \%state, $arg );
    }