Help for this page

Select Code to Download


  1. or download this
    % /bin/foo foo_a foo_b foo_c
  2. or download this
    % /bin/foo foo_?
  3. or download this
    sub foo
    {
          croak "foo() only takes one argument" if (@_ > 1);
          print "$_[0]\n";
    }