in reply to Re^3: Hash initialization works, but why?in thread Hash initialization works, but why?
my $num_elemens = @foo; # @foo evaluates to a scalar. my ($first, $second) = @foo; # @foo evaluates to a list. [download]