summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_block.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_block.rb')
-rw-r--r--benchmark/bm_vm1_block.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/benchmark/bm_vm1_block.rb b/benchmark/bm_vm1_block.rb
new file mode 100644
index 0000000000..1a7f98b3ce
--- /dev/null
+++ b/benchmark/bm_vm1_block.rb
@@ -0,0 +1,10 @@
+def m
+ yield
+end
+
+i=0
+while i<30000000 # while loop 1
+ i+=1
+ m{
+ }
+end \ No newline at end of file