summaryrefslogtreecommitdiff
path: root/jni/ruby/benchmark/bm_vm1_float_simple.rb
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/benchmark/bm_vm1_float_simple.rb')
-rw-r--r--jni/ruby/benchmark/bm_vm1_float_simple.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/jni/ruby/benchmark/bm_vm1_float_simple.rb b/jni/ruby/benchmark/bm_vm1_float_simple.rb
new file mode 100644
index 0000000..d458143
--- /dev/null
+++ b/jni/ruby/benchmark/bm_vm1_float_simple.rb
@@ -0,0 +1,7 @@
+i = 0.0; f = 0.0
+while i<30_000_000
+ i += 1
+ f += 0.1; f -= 0.1
+ f += 0.1; f -= 0.1
+ f += 0.1; f -= 0.1
+end