in reply to Re^2: Why? (each...)
in thread Why? (each...)

What does "indicates a list" mean?

my %h = ($x); # List created for RHS. my %h = $x; # List created for RHS. my $s = ($x); # No list created for RHS. my $s = $x; # No list created for RHS.