|
|
| Perl-Sensitive Sunglasses | |
| PerlMonks |
array copy questionby smackdab (Pilgrim) |
| on Dec 08, 2003 at 17:02 UTC ( [id://313266]=perlquestion: print w/replies, xml ) | Need Help?? |
This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.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
|
|
||||||||||||||||||||||||||||||||