Help for this page

Select Code to Download


  1. or download this
    my @masterarray = ( \@array1, \@array2, \@array3 );
    
  2. or download this
    my $c = 0;
    for my $a(@masterarray) { 
      print "Array: ", ++$c, "\n"; 
      print "  $_\n" for @$a;
    }