summaryrefslogtreecommitdiff
path: root/sample/freq.rb
blob: 1b2194c69acff8e0a59ffee0cd00dd1c61c15d98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# word occurrence listing
# usage: ruby freq.rb file..
freq = Hash.new(0)
while line = gets()
  line.scan(/\w+/) do |word|
    freq[word] += 1
  end
end

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