Help for this page

Select Code to Download


  1. or download this
    sub foo {
        if (1 != @_) {
    ...
        # body of foo here.
        return $whatever;
    }
    
  2. or download this
    sub foo {
        ( map {
            # body of foo here.
        } @_ )[ 0 .. $#_ ];
    }