in reply to Questions about using array-of-arrays
use Storable qw(dclone); my @a = ([2, 3], [5, 6]); my $copy_ref = dclone(\@a); my @copy = @{ dclone(\@a) }; [download]
(Untested, no perl available atm :()
Perl 6 in German