summaryrefslogtreecommitdiff
path: root/benchmark/other-lang/ack.scm
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/other-lang/ack.scm')
-rw-r--r--benchmark/other-lang/ack.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/benchmark/other-lang/ack.scm b/benchmark/other-lang/ack.scm
index e9e1886933..a80b73ba55 100644
--- a/benchmark/other-lang/ack.scm
+++ b/benchmark/other-lang/ack.scm
@@ -1,7 +1,7 @@
-(define (ack m n)
- (cond ((zero? m) (+ n 1))
- ((zero? n) (ack (- m 1) 1))
- (else (ack (- m 1) (ack m (- n 1))))))
-
-(ack 3 9)
-
+(define (ack m n)
+ (cond ((zero? m) (+ n 1))
+ ((zero? n) (ack (- m 1) 1))
+ (else (ack (- m 1) (ack m (- n 1))))))
+
+(ack 3 9)
+