Mercurial > urweb
view tests/let.ur @ 1423:bd6c90f5a428
Fix some cookie-related bugs in MonoReduce
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 10 Feb 2011 08:46:46 -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