Help for this page

Select Code to Download


  1. or download this
    my @masterarray = (@array1, @array2, @array3);
    
  2. or download this
    my @masterarray = (\@array1, \@array2, \@array3);
    
  3. or download this
    my @lengths = map 0+@$_, @masterarray; # (untested!)