Help for this page

Select Code to Download


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