in reply to multi-dimensional arrays, dereferencing
Hi fabalicious
If @M is an array of array references, then
foreach $arrayref (@M) { foreach $element (@$arrayref) { print "$element "; } print "\n"; } [download]
hope this helps
cheers
thinker