Help for this page
sub function1 { my ($var) = @_? @_:'no arg'; ... function1('0'); function1('zero'); function1();
Output: 0 0 zero no arg