in reply to Re^4: Not understanding 2 sentences in perldoc
in thread Not understanding 2 sentences in perldoc

This:
(my ($x, $y, $z) = qw( 1 2 3 )) = qw( a b c );
Is semantically equivalent to this,
my ($x, $y, $z) = qw( 1 2 3 ); # $x = '1', $y = '2', $z = '3'. ($x, $y, $z) = qw( a b c ); # $x = 'a', $y = 'b', $z = 'c'.