Help for this page

Select Code to Download


  1. or download this
    sub foo {
      my $x=shift;
      #code....
      foo($x+1);
    }
    
  2. or download this
    sub foo {
      my $x=shift;
    ...
      $x++;
      goto START_OF_FOO;
    }