![]() |
|
There's more than one way to do things | |
PerlMonks |
Re^2: Not understanding 2 sentences in perldocby perlfan (Vicar) |
on Jul 29, 2020 at 21:18 UTC ( #11120026=note: print w/replies, xml ) | Need Help?? |
For my own edificiation, would we expect B::Deparse to have broken this down further? This was my first attempt to decompose it.
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
In Section
Seekers of Perl Wisdom
|
|