in reply to Re: Tutorial on arguments for the newin thread Tutorial on arguments for the new
my ($bar, $baz) = ("Hello ", "World"); foo($bar, $baz); # ... sub foo{ print "$_[0]"; #prints "Hello " print "$_[1]"; #prints "World" [download]