annotate tests/thog.ur @ 2257:28a541bd2d23

Use referenced (rather than all) free variables as keys for pure caches.
author Ziv Scully <ziv@mit.edu>
date Sun, 27 Sep 2015 14:46:12 -0400
parents 714e8b84221b
children
rev   line source
adam@1308 1 fun ack (m, n) =
adam@1308 2 if m = 0 then
adam@1308 3 n + 1
adam@1308 4 else if n = 0 then
adam@1308 5 ack (m - 1, 1)
adam@1308 6 else
adam@1308 7 ack (m - 1, ack (m, n - 1))
adam@1308 8
adam@1308 9 fun main n = return <xml>{[ack (n, 4)]}</xml>