summaryrefslogtreecommitdiff
path: root/tests/thog.ur
blob: 29e335fc09e080dbd3f0c00c7b2ab37c6a56098f (plain)
1
2
3
4
5
6
7
8
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>