Help for this page

Select Code to Download


  1. 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);
    
  2. or download this
    my @alpha = ("a".."z");
    
  3. or download this
    my $x=0;
    my $y=0;
    
  4. or download this
    while ($yy < 26) {
            $xx = 0;
    ...
            print "\n";
            $yy++;
    }
    
  5. or download this
    foreach $yy (1..26) {
        foreach $xx (1..26) {
    ...
        }
        print \n
    }