Help for this page

Select Code to Download


  1. or download this
    my @AoA = (['the', 'first', 'array'],
               ['another', 'array'],
    ...
    foreach (@AoA) {
      print scalar @$_, " elements\n";
    }
    
  2. or download this
    3 elements
    2 elements
    5 elements