mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5 lines
130 B
Ruby
5 lines
130 B
Ruby
|
h = {}.compare_by_identity
|
||
|
objs = 26.times.map { Object.new }
|
||
|
objs.each { |o| h[o] = o }
|
||
|
200_000.times { objs.each { |o| h[o] } }
|