in reply to Help with argument to a subroutine
# 1. sub parse_header { # Get the first argument passed to the function/method. my $header = shift(); .... }
# 2. sub parse_header { # Get the first argument passed to the function/method. my $header = $_[0]; .... }
|
|---|