Mercurial > urweb
view tests/let.ur @ 1918:c3c84fd38815
Postgres: remove DML error code logging and (hopefully) fix the real problem, not checking for concurrency faults on SELECTs
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Fri, 29 Nov 2013 08:12:57 -0500 |
parents | b77863cd0be2 |
children |
line wrap: on
line source
fun main () : transaction page = let val x = 1 val y = "Hello" val z = 3.45 in return <xml>{[x]}, {[y]}, {[z]}</xml> end