Help for this page

Select Code to Download


  1. or download this
        foreach $word(@word) {
           $count{$word}++; 
        }
    
  2. or download this
        for $w (0 .. $#word) {
           $count{$word[$w].' '.$word[$w+1] }++;
        }