mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
211 B
Ruby
13 lines
211 B
Ruby
|
# word occurrence listing
|
||
|
# usege: ruby occur.rb file..
|
||
|
freq = {}
|
||
|
while gets()
|
||
|
for word in $_.split(/\W+/)
|
||
|
freq[word] +=1
|
||
|
end
|
||
|
end
|
||
|
|
||
|
for word in freq.keys.sort
|
||
|
printf("%s -- %d\n", word, freq[word])
|
||
|
end
|