mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-02 22:42:49 +08:00
12 lines
154 B
Ruby
12 lines
154 B
Ruby
def array_each(x)
|
|
large_array = $large_array.dup
|
|
|
|
x.report "each" do
|
|
10000.times do
|
|
large_array.each do |item|
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|