Help for this page

Select Code to Download


  1. or download this
    # from your add_words() sub
    ...
       $words{"$category-$word"} += $words_in_file{$word};
    
  2. or download this
    sub show_classification{
        my ( $wantedCategory ) = @_;
    ...
            print "$word\n" if $category eq $wantedCategory;
        }
    }