aboutsummaryrefslogtreecommitdiff
path: root/test/acker.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/acker.test')
-rw-r--r--test/acker.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/acker.test b/test/acker.test
new file mode 100644
index 0000000..2036861
--- /dev/null
+++ b/test/acker.test
@@ -0,0 +1,2 @@
+acker i j = if (i==0) (j+1) acker(i-1, if (j==0) 1 acker(i,j-1))
+acker(3,7)