Help for this page

Select Code to Download


  1. or download this
    print
        join( '',
              map( "$_: $word_count{$_}\n",
                   @gt_three_char_words[ 0 .. 9 ] ) )
        . "\n";
    
  2. or download this
    for my $word (@gt_three_char_words[ 0 .. 9]) {
       print "$word: $word_count{$word}\n";
    }