Mercurial > urweb
view tests/nomangle.ur @ 2152:2d9e40e726f2
Adjust new [assert] to work properly from top.ur
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 03 Jun 2015 09:55:37 -0400 |
parents | f55b0e45422f |
children |
line wrap: on
line source
table foo : { Bar : int, Baz : string } PRIMARY KEY Baz fun main () : transaction page = rs <- queryX1 (SELECT foo.Bar FROM foo WHERE foo.Baz = 'Hi') (fn r => <xml>{[r.Bar]}</xml>); return <xml><body>{rs}</body></xml>