Mercurial > urweb
view tests/let.ur @ 2236:fab8c1f131a5
Major DNF-calculation performance decrapification.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Tue, 30 Jun 2015 01:56:22 -0700 |
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