Help for this page

Select Code to Download


  1. or download this
    sub blah {
        my ($foo, $bar, $baz) = @_;
    ...
    
        ...
    }
    
  2. or download this
    sub blah {
        my ( $foo, $bar, $baz );
    ...
        }
        do_something;
    }
    
  3. or download this
    sub blah {
        croak "You forgot something" unless all { defined } ( my ( $foo, $
    +bar, $baz ) = @_ );
        do_something;
    }