summaryrefslogtreecommitdiff
path: root/sample/occur.rb
blob: 8bb09e15adff933214b4b47459f9f2d86fb0a579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# word occurrence listing
# usege: ruby occur.rb file..
freq = Hash.new(0)
while gets()
  for word in split(/\W+/)
    freq[word] += 1
  end
end

for word in freq.keys.sort!
  print word, " -- ", freq[word], "\n"
end