view tests/hog.ur @ 1811:9913c81bdbef

Fixed memory leak in dynClass
author Vladimir Shabanov <vshabanoff@gmail.com>
date Thu, 30 Aug 2012 17:00:18 +0400
parents a1aa62b472cf
children
line wrap: on
line source
fun more n =
    if n <= 0 then
        "!"
    else
        more (n-1) ^ more (n-1)

fun main n =
    debug "Let's give this a try....";
    return <xml>{[more n]}</xml>