Could you plz give me an code example reproducing this other error?
Maybe the problem is connected to the fact that you are trying to print the AoA in a whole
print @array
... this will result in a list of stringified array-refs.
ARRAY(0x8bfc3f8) ...
Better use Data::Dumper Dumper like kcott showed you or print the single subarrays to get the leaf-elements stringified.
print "@$_\n" for @array;
HTH
Cheers Rolf
( addicted to the Perl Programming Language)
In reply to Re^3: element of an array of arrays
by LanX
in thread element of an array of arrays
by JockoHelios
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |