summaryrefslogtreecommitdiff
path: root/benchmark/vm_dstr_class_module.rb
blob: becf0861c7dc462b6daee02ea40f1baddc5e387a (plain)
1
2
3
4
5
6
7
8
9
10
i = 0
class A; end unless defined?(A)
module B; end unless defined?(B)
x = A
y = B
while i<6_000_000 # benchmark loop 2
  i += 1
  str = "foo#{x}bar#{y}baz"
end