Help for this page

Select Code to Download


  1. or download this
    {
      my $shared;
    ...
        print "Foo called $shared times.\n";
      }
    }
    
  2. or download this
    sub foo {
      my $i = shift;
    ...
      printFoo();
      foo($i-1);
    }