in reply to Tutorial on arguments for the new
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 @_; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tutorial on arguments for the new
by Andrew_Levenson (Hermit) on Dec 11, 2006 at 21:17 UTC | |
|
Re^2: Tutorial on arguments for the new
by PockMonk (Beadle) on Dec 11, 2006 at 21:21 UTC |