Help for this page
foreach (@masterarrray) { my @array = @$_; ... print "@array"; # prints the contents # ... etc ... }
foreach (@masterarrray) { print int @$_; # prints the length of the array ... print $$_[0]; # prints the 0th element # ... etc ... }