|
|
| Perl-Sensitive Sunglasses | |
| PerlMonks |
array copy questionby smackdab (Pilgrim) |
| on Dec 08, 2003 at 22:02 UTC ( #313266=perlquestion: print w/ replies, xml ) | Need Help?? |
|
smackdab has asked for the
wisdom of the Perl Monks concerning the following question:
In 5.6 I was doing this to copy an array from an array ref:
my @$ra_ret_save = @$ra_ret; 5.8 doesn't like it and now I am doing: my $ra_ret_save; @{$ra_ret_save} = @{$ra_ret}; Was the orig wrong, what changed?
Back to
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||