summaryrefslogtreecommitdiff
path: root/tests/with.ur
blob: 458153b36e3971f96428fff8f12ad8384aa46fdc (plain)
1
2
3
4
5
val r = ({A = 1, B = 2} with #C = "Hi") with #D = "Bye"

fun main () : transaction page = return <html><body>
        {cdata r.C}, {cdata r.D}
</body></html>