summaryrefslogtreecommitdiff
path: root/trunk/benchmark/other-lang/fact.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/other-lang/fact.rb')
-rw-r--r--trunk/benchmark/other-lang/fact.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/trunk/benchmark/other-lang/fact.rb b/trunk/benchmark/other-lang/fact.rb
new file mode 100644
index 0000000000..7e97b22b39
--- /dev/null
+++ b/trunk/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