Help for this page

Select Code to Download


  1. or download this
    my ($blah) = @_;   # note the ()s. w/o them $blah is the size of @_.
    my  $blah  = shift;
    
  2. or download this
    my ($first, $second, @rest) = @_;
  3. or download this
    sub frontend { shift->backend("an extra arg", @_) }
  4. or download this
    sub mine ($blah) {
        say "$blah is now visible here.";
    }