in reply to Re: Not understanding 2 sentences in perldocin thread Not understanding 2 sentences in perldoc
perl -MO=Deparse -e '(my ($x, $y, $z) = qw( 1 2 3 )) = qw( a b c )' (my($x, $y, $z) = ('1', '2', '3')) = ('a', 'b', 'c'); -e syntax OK