in reply to Re^2: element of an array of arrays
in thread element of an array of arrays
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)
|
|---|