Mercurial > urweb
view tests/let.ur @ 2110:9e9c915f554c
A new MonoReduce optimization for lifting 'let' out of field projection; JavaScript compilation for exponentiation
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 01 Feb 2015 12:29:14 -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