Help for this page

Select Code to Download


  1. or download this
    push @grid, [ @input ] for @input;
    
  2. or download this
    @grid = (
      [ qw( a b c d ) ],
    ...
      [ qw( a b c d ) ],
      [ qw( a b c d ) ],
    );
    
  3. or download this
    print "@$_\n" for @grid;