summaryrefslogtreecommitdiff
path: root/tests/let.ur
blob: 14dc936c4c96fa3c9fa3c28e63d101108ad38e10 (plain)
1
2
3
4
5
6
7
8
fun main () : transaction page =
    let
        val x = 1
        val y = "Hello"
        val z = 3.45
    in
        return <xml>{[x]}, {[y]}, {[z]}</xml>
    end