Help for this page

Select Code to Download


  1. or download this
     
    for my $elem (@phrase) { 
        $wordfreq{$elem}++;
    }
    
  2. or download this
    # or even shorter, but perhaps a bit unreadable:
    $wordfreq{$_} for (@phrase);
    
  3. or download this
    $wordfreq{$_}++ for (@phrase);
    
  4. or download this
    foreach my $key (sort keys %wordfreq) {
        print "$key: $wordfreq{$key}\n";
    }