Mercurial > urweb
view tests/with.ur @ 521:31aba58a5b5b
Ditch use of ElabEnv.env in Especialize, to realize big speed-up
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 27 Nov 2008 12:34:44 -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>