summaryrefslogtreecommitdiff
path: root/tests/letwhere.ur
blob: 8854f2aad747d61c16f6a99b72b1713f464836cc (plain)
1
2
3
4
5
6
7
fun main () : transaction page =
    let
        return <xml>Hi {[alice]} and {[bob]}!</xml>
    where
        val alice = "Alice"
        val bob = "Bob"
    end