aboutsummaryrefslogtreecommitdiffstats
path: root/ack.tpr
diff options
context:
space:
mode:
Diffstat (limited to 'ack.tpr')
-rw-r--r--ack.tpr8
1 files changed, 0 insertions, 8 deletions
diff --git a/ack.tpr b/ack.tpr
deleted file mode 100644
index 1fe38d5..0000000
--- a/ack.tpr
+++ /dev/null
@@ -1,8 +0,0 @@
-(def ack
- (fn (m n)
- (if (= 0 m) (+ n 1)
- (= 0 n) (ack (- m 1) 1)
- (ack (- m 1) (ack m (- n 1))))))
-
-(ack 3 10)
-