summaryrefslogtreecommitdiff
path: root/sample/occur2.rb
blob: 6e0513707c9156b406043c21364963f8768c9bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
freq = {}
while gets()
  for word in $_.split(/\W+/)
    protect
      freq[word] = freq[word] + 1
    resque
      freq[word] = 1
    end
  end
end

for word in freq.keys.sort
  printf("%s -- %d\n", word, freq[word])
end