Help for this page

Select Code to Download


  1. or download this
        for (my $x = 0; $x <= $#AoA; $x++)
        {
            print "@{ $AoA[$x] }\n";
        }
    
  2. or download this
       print "@$_\n" for @AoA;