Help for this page

Select Code to Download


  1. or download this
    my %description = (
       a => 'a vowel',
    ...
    for my $choice (qw/a b c/){
       print "$choice is ", $description{$choice} || "not in the alphabet.
    +", "\n";
    }
    
  2. or download this
    a is a vowel
    b is a consonant
    c is not in the alphabet.