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