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