mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-23 12:27:56 +08:00
15 lines
240 B
Ruby
15 lines
240 B
Ruby
def hash_aref(x)
|
|
x.report "hash[key] with exist key" do
|
|
1000000.times do
|
|
$small_hash[:SlBkyplxcZ]
|
|
end
|
|
end
|
|
|
|
x.report "hash[key] with unknown key" do
|
|
1000000.times do
|
|
$small_hash[:SlBkdfadsfs]
|
|
end
|
|
end
|
|
|
|
end
|