blob: 25efa3485b6a58dc13f92908e7aaf79c5efdf519 (
plain)
1
2
3
4
5
|
table t1 : {A : int, B : string, C : float, D : bool}
fun main () : transaction page =
() <- dml (update {B = "6", C = 7.0} t1 (WHERE T.A = 5));
return <html><body>Updated.</body></html>
|