Help for this page

Select Code to Download


  1. or download this
    my @table = ([1, 2, 3], [4, 5, 6]);
    
  2. or download this
    for my $row (@table) {
      for my $cell (@$row) {
    ...
    
      print "\n";
    }
    
  3. or download this
    print "@$_\n" for @table;