Help for this page

Select Code to Download


  1. or download this
      BEGIN {
        my $var = 10;
    ...
          return ++$var;
        }
      }
    
  2. or download this
      sub next {
        state $var = 10;
        return ++$var;
      }