mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Be consistent on the use of the implicit $_.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3185 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
63406c4971
commit
c37140b351
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
# usege: ruby occur.rb file..
|
# usege: ruby occur.rb file..
|
||||||
freq = Hash.new(0)
|
freq = Hash.new(0)
|
||||||
while gets()
|
while gets()
|
||||||
for word in $_.split(/\W+/)
|
for word in split(/\W+/)
|
||||||
freq[word] += 1
|
freq[word] += 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue