summaryrefslogtreecommitdiff
path: root/tests/thog.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/thog.ur')
-rw-r--r--tests/thog.ur9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/thog.ur b/tests/thog.ur
new file mode 100644
index 00000000..29e335fc
--- /dev/null
+++ b/tests/thog.ur
@@ -0,0 +1,9 @@
+fun ack (m, n) =
+ if m = 0 then
+ n + 1
+ else if n = 0 then
+ ack (m - 1, 1)
+ else
+ ack (m - 1, ack (m, n - 1))
+
+fun main n = return <xml>{[ack (n, 4)]}</xml>