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