blob: 362753f71fff50206900a89254f65848ebf4bd49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# word occurrence listing
# usege: 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
|