Help for this page

Select Code to Download


  1. or download this
    my $foo = "Hello there" for (1 .. 3);
    
  2. or download this
    sub blah
    {
    ...
      print $foo++,$/;
    }
    blah(),blah(),blah();