Mercurial > urweb
view tests/hog.ur @ 1331:a6427d1eda6f
Comments in .urp files
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 11 Dec 2010 13:42:54 -0500 |
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>