summaryrefslogtreecommitdiff
path: root/benchmark/other-lang/fact.py
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/other-lang/fact.py')
-rw-r--r--benchmark/other-lang/fact.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/benchmark/other-lang/fact.py b/benchmark/other-lang/fact.py
new file mode 100644
index 0000000000..460e4057f4
--- /dev/null
+++ b/benchmark/other-lang/fact.py
@@ -0,0 +1,18 @@
+#import sys
+#sys.setrecursionlimit(1000)
+
+def factL(n):
+ r = 1
+ for x in range(2, n):
+ r *= x
+ return r
+
+def factR(n):
+ if n < 2:
+ return 1
+ else:
+ return n * factR(n-1)
+
+for i in range(10000):
+ factR(100)
+