Help for this page

Select Code to Download


  1. or download this
        if(exists $wordCount{$_}) {
            $wordCount{$_} = $wordCount{$_} + 1;
    ...
        else {
            $wordCount{$_} = 1;
        }
    
  2. or download this
        ++$wordCount{$_};