sorry, couldn't resist ;-)
update:
No it won't.foo($bar, $baz); # ... sub foo{ print "$_"; #will first print out the contents of $bar, then $baz ...
you mean
sub foo { print for @_; } # or sub foo { print @_; }
In reply to Re: Tutorial on arguments for the new
by Joost
in thread Tutorial on arguments for the new
by Andrew_Levenson
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |