Mercurial > urweb
view tests/let.ur @ 2248:e09c3dc102ef
Rewrite effectfulness analysis using MonoUtil.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Sat, 15 Aug 2015 23:08:37 -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