What Gavin said, plus:

# print the whole thing one at a time
for $i ( 0 .. $#current_array ) {
  for $j ( 0 .. $#{$current_array[$i]} ) {
      print "element $i $j is $current_array[$i][$j]\n";
  }
}

Use Data::Dumper for this. Check CPAN.

--
Del
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to