Help for this page
sub f { my ($arg1,$arg2,$arg3) = @_; ... f(); # Works. ($arg1, $arg2 and $arg3 are undef.) f(1,2,3,4); # Works. ('4' is ignored.)
sub f { my ($arg1) = @_; ... t1('moo'); # t1: [undef] t2('moo'); # t2: moo