- or download this
my @alpha = qw(a b c d e f g h i j k l m n o p q r s t u v w x y z);
- or download this
my @alpha = ("a".."z");
- or download this
my $x=0;
my $y=0;
- or download this
while ($yy < 26) {
$xx = 0;
...
print "\n";
$yy++;
}
- or download this
foreach $yy (1..26) {
foreach $xx (1..26) {
...
}
print \n
}