summaryrefslogtreecommitdiff
path: root/jni/ruby/benchmark/other-lang/fact.rb
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/benchmark/other-lang/fact.rb')
-rw-r--r--jni/ruby/benchmark/other-lang/fact.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/jni/ruby/benchmark/other-lang/fact.rb b/jni/ruby/benchmark/other-lang/fact.rb
new file mode 100644
index 0000000..6cedc75
--- /dev/null
+++ b/jni/ruby/benchmark/other-lang/fact.rb
@@ -0,0 +1,13 @@
+def fact(n)
+ if n < 2
+ 1
+ else
+ n * fact(n-1)
+ end
+end
+
+i = 0
+while i<10000
+ i += 1
+ fact(100)
+end