in reply to Re^4: mystery function & Odd number of elements in anonymous hash
in thread mystery function & Odd number of elements in anonymous hash
Or, in this case:my $hshref = { foo => scalar(func()), bar => "baz" };
my $hshref = { foo => func()[0], bar => "baz" };
|
|---|