- or download this
sub parse_header {
my ($header) = @_;
do this and thia
}
- or download this
sub parse_header {
my $header = shift;
do this and thia
}
- or download this
sub three_args_func {
my ($arg0, $arg1, $arg2) = @_;
do this and thia
}
- or download this
sub three_args_func {
my $arg0 = shift;
...
my $arg2 = shift;
do this and thia
}