Help for this page

Select Code to Download


  1. or download this
      foreach my $con ( @consonants ) {
         foreach my $vow ( @vowels ) {
            ..
         }
      }
    
  2. or download this
        foreach my $con_1 ( @consonants ) {
          foreach my $vow_1 ( @vowels ) {
    ...
            } 
          }
        }
    
  3. or download this
    #!/usr/bin/perl
    
    ...
        }
      }
    }