Mercurial > urweb
view tests/let.ur @ 2155:7ce804ecd56b
A number of bug fixes in the manual
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 11 Jun 2015 19:38:03 -0400 |
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