in reply to Re: Stumped when passing barewords
in thread Stumped when passing barewords

In that case why does this have no effect?
sub sub2(*) { print "args(2): @_\n"; 0; # <--- change is here. }
The output is from the print statements, not the return values.