in reply to my $x or my ($x)
Will printmy ($foo, $bar, $baz) = return_an_array(); print "Foo: $foo, BAR: $bar, BAZ: $baz"; sub return_an_array() { my @the_array = ("1","apple","a"); return @the_array; }
Update: added $baz in the correct place. Thanks blogical.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: my $x or my ($x)
by blogical (Pilgrim) on Apr 04, 2006 at 17:49 UTC |