in reply to Array of Arrays
Well it would be easier to help you if we had the code which builds up the data structure. Looking at your code and the results you're getting I'd guess that:
The code you want is probably something like this:
foreach ($@array) { print join ', ', @$_; print "\n"; }
You should read perldoc perllol for more details on how this works.
--"The first rule of Perl club is you do not talk about
Perl club."
-- Chip Salzenberg
|
|---|