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.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/benchmark/other-lang/fact.scm b/benchmark/other-lang/fact.scm
index 511990f797..c98a7fedd3 100644
--- a/benchmark/other-lang/fact.scm
+++ b/benchmark/other-lang/fact.scm
@@ -1,8 +1,8 @@
-(define (fact n)
- (if (< n 2)
- 1
- (* n (fact (- n 1)))))
-
-(dotimes (i 10000)
- (fact 100))
-
+(define (fact n)
+ (if (< n 2)
+ 1
+ (* n (fact (- n 1)))))
+
+(dotimes (i 10000)
+ (fact 100))
+