Mercurial > urweb
view tests/with.ur @ 1596:02a50a9d50ea
Include character encoding in HTTP response headers.
author | Karn Kallio <kkallio@eka> |
---|---|
date | Wed, 16 Nov 2011 13:51:22 -0430 |
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>