view tests/show.ur @ 286:ffe5b01908ae

'show' type class; htmlification optimizations
author Adam Chlipala <adamc@hcoop.net>
date Sun, 07 Sep 2008 10:48:51 -0400
parents
children
line wrap: on
line source
fun main () : transaction page = return <html><body>
        6 = {cdata (show _ 6)}<br/>
        12.34 = {cdata (show _ 12.34)}<br/>
        Hi = {cdata (show _ "Hi")}<br/>
        False = {cdata (show _ False)}<br/>
</body></html>