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