http://www.perlmonks.org?node_id=541135


in reply to my $x or my ($x)

In addition to the above, the list context can be useful in a case like this:
my ($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; }
Will print
Foo: 1, BAR: apple, BAZ: a

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
    Or it would, if you asked for $baz. As it is it simply discards the third return item, 'a'.

    "One is enough. If you are acquainted with the principle, what do you care for the myriad instances and applications?"
    - Henry David Thoreau, Walden