summaryrefslogtreecommitdiff
path: root/benchmark/other-lang/fact.scm
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/other-lang/fact.scm')
-rw-r--r--benchmark/other-lang/fact.scm8
1 files changed, 8 insertions, 0 deletions
diff --git a/benchmark/other-lang/fact.scm b/benchmark/other-lang/fact.scm
new file mode 100644
index 0000000000..511990f797
--- /dev/null
+++ b/benchmark/other-lang/fact.scm
@@ -0,0 +1,8 @@
+(define (fact n)
+ (if (< n 2)
+ 1
+ (* n (fact (- n 1)))))
+
+(dotimes (i 10000)
+ (fact 100))
+