Next Hash Hash Hash 16

        my %category_count;
        
        sub handle_article {
            my ($path, $category, $article_body) = @_;
            ...
            # lots of stuff
            ...
            
            # count number of articles in each category
            $category_count{ $category }++;
        }

Next 16