Mercurial > urweb
view tests/let.ur @ 896:0ae8894d5c97
New command-line options; describe simple SQLite build in demo intro
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sat, 18 Jul 2009 13:46:22 -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