Help for this page

Select Code to Download


  1. or download this
    while ( my ($punctuation, $count) = each(%wordHash) )
    {    
    ...
        $i++;
        print ("$count\t$charnames{$punctuation}\n");
    }
    
  2. or download this
    while ( my ($punctuation, $count) = each(%wordHash) )
    {    
        push @wordArray, "$count\t$punctuation"
        print ("$count\t$charnames{$punctuation}\n");
    }