aboutsummaryrefslogtreecommitdiffstats
path: root/ack.tpr
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-30 18:47:32 +0000
committerDavid Robillard <d@drobilla.net>2009-03-30 18:47:32 +0000
commitfdc794f5dc9de5b55fff71939ee4374ea38efa8f (patch)
tree3d09e93504ec9c11013a306fd6abb3949f01789f /ack.tpr
parent454e8908d51d2bb8c83af69f69b2c72e9606967d (diff)
downloadresp-fdc794f5dc9de5b55fff71939ee4374ea38efa8f.tar.gz
resp-fdc794f5dc9de5b55fff71939ee4374ea38efa8f.tar.bz2
resp-fdc794f5dc9de5b55fff71939ee4374ea38efa8f.zip
Compile things into separate build dir.
Move .tpr files to test dir. git-svn-id: http://svn.drobilla.net/resp/tuplr@109 ad02d1e2-f140-0410-9f75-f8b11f17cedd
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)
-