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, 0 insertions, 8 deletions
diff --git a/trunk/benchmark/other-lang/fact.scm b/trunk/benchmark/other-lang/fact.scm
deleted file mode 100644
index c98a7fedd3..0000000000
--- a/trunk/benchmark/other-lang/fact.scm
+++ /dev/null
@@ -1,8 +0,0 @@
-(define (fact n)
- (if (< n 2)
- 1
- (* n (fact (- n 1)))))
-
-(dotimes (i 10000)
- (fact 100))
-