Mercurial > urweb
view tests/hog.ur @ 1310:f0909fb3848f
Simplify type of Monad.appR2
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 17 Oct 2010 13:26:11 -0400 |
parents | d2ad997ca157 |
children | a1aa62b472cf |
line wrap: on
line source
fun more n = if n <= 0 then "!" else more (n-1) ^ more (n-1) fun main n = return <xml>{[more n]}</xml>