Mercurial > urweb
view tests/with.ur @ 1071:26197c957ad6
Better record summary error messages; more tweaking SQL usability
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 13 Dec 2009 11:28:47 -0500 |
parents | 075b36dbb1a4 |
children |
line wrap: on
line source
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>