Help for this page

Select Code to Download


  1. or download this
    # fill two 25 x 25 arrays with zeros, then modify a couple of cells
    my @PP = my @OO = (1..25);
    
  2. or download this
    use strict;
    use warnings;
    ...
    __END__
    [1 .. 25]
    [[1 .. 5], [1 .. 5]]
    
  3. or download this
    use strict;
    use warnings;
    ...
      [1 .. 25],
      [1 .. 25],
    ]