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