summaryrefslogtreecommitdiff
path: root/tests/insert.ur
blob: 58db4ef1db05c860eef53dafa2c4c9238c8bf7bb (plain)
1
2
3
4
5
table t1 : {A : int, B : string, C : float, D : bool}

fun main () : transaction page =
        () <- dml (insert t1 {A = 5, B = "6", C = 7.0, D = True});
        return <html><body>Inserted.</body></html>