Files
RubyMotion/test/Benchmark/app/benchmark/module/const_set.rb
2014-01-27 09:37:38 +09:00

15 lines
253 B
Ruby

def module_const_set(x)
x.report "const_set" do
100000.times do |i|
Foo.const_set(:"CONST_FOO#{i}", 42)
end
end
x.report "const_set (included)" do
100000.times do |i|
Bar.const_set(:"CONST_BAZ#{i}", 42)
end
end
end