Mercurial > urweb
view tests/let.ur @ 2082:1b76ae703cbb
Some more optimization of string expressions showing up in JSON generation (Meta library)
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 03 Dec 2014 21:06:15 -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