Help for this page

Select Code to Download


  1. or download this
    sub fooge
    {
         my ($foo, $bar, @baz) = @_;
    ...
    
         # ...
    }
    
  2. or download this
    sub fooge
    {
         my ($foo, $bar) = (pop, pop);
    }
    
  3. or download this
    sub blarg
    {
         my ($foo, $bar, $bork) = @_;
    ...
              die "Apocalyptic end of blarg(@_)\n";
         }
    }