view tests/show.ur @ 289:0cc956a3216f

Parsing strings for floats and bools
author Adam Chlipala <adamc@hcoop.net>
date Sun, 07 Sep 2008 11:41:04 -0400
parents ffe5b01908ae
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>