Mercurial > urweb
view tests/with.ur @ 969:001edfbe2561
Iterative versions of some JavaScript list functions
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 22 Sep 2009 09:53:05 -0400 |
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>