aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm2_dstr.rb
blob: 58c0f7bbc3d40952660d4531bc8154f79e9269c7 (plain)
1
2
3
4
5
6
i = 0
x = y = 'z'
while i<6_000_000 # benchmark loop 2
  i += 1
  str = "foo#{x}bar#{y}baz"
end