You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
224 B
Perl

@array = (
["A", "F"],
["B", "E", "G"],
["C", "D"],
);
for $outer (0..$#array) {
for $inner (0..$#{$array[$outer]}) {
print $array[$outer][$inner], " ";
}
print "\n";
}