Mercurial > urweb
view tests/let.ur @ 1920:2f33d9a51765
Increase precision for rendering floats to SQL
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Tue, 03 Dec 2013 16:54:04 -0500 |
parents | b77863cd0be2 |
children |
line wrap: on
line source
fun main () : transaction page = let val x = 1 val y = "Hello" val z = 3.45 in return <xml>{[x]}, {[y]}, {[z]}</xml> end