summaryrefslogtreecommitdiff
path: root/benchmark/vm_dstr_bool.rb
blob: 631ca54755c9e2d841e5659f079f90c96c624c9f (plain)
1
2
3
4
5
6
7
i = 0
x = true
y = false
while i<6_000_000 # benchmark loop 2
  i += 1
  str = "foo#{x}bar#{y}baz"
end