summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_dstr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_dstr.rb')
-rw-r--r--benchmark/bm_vm2_dstr.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/benchmark/bm_vm2_dstr.rb b/benchmark/bm_vm2_dstr.rb
new file mode 100644
index 0000000000..58c0f7bbc3
--- /dev/null
+++ b/benchmark/bm_vm2_dstr.rb
@@ -0,0 +1,6 @@
+i = 0
+x = y = 'z'
+while i<6_000_000 # benchmark loop 2
+ i += 1
+ str = "foo#{x}bar#{y}baz"
+end