Help for this page

Select Code to Download


  1. or download this
    use feature qw/ state /;
    state $counter = 1;
    
  2. or download this
     BEGIN {
        my $counter = 1;
        sub DirPP {
    ...
            return;
        }
    }