Help for this page

Select Code to Download


  1. or download this
    while (<$wordhandle>) {
    $deadstring = chomp;
    ...
    $wordcount++;
    
    }
    
  2. or download this
    while (<$wordhandle>) {
      chomp;
      $hashlist{$_} = 1;
      $wordcount++;
    }