view tests/record_page.ur @ 2291:50ad02829abd

Make cache flushes happen immediately instead of at end of transaction.
author Ziv Scully <ziv@mit.edu>
date Tue, 17 Nov 2015 02:44:37 -0500
parents 71bafe66dbe1
children
line wrap: on
line source
type t = {A : string, B : {C : string, D : string}}

val page = fn x : t => <html><body>
        {cdata x.A},{cdata x.B.C},{cdata x.B.D}
</body></html>

val main : unit -> page = fn () => <html><body>
        <li><a link={page {A = "A", B = {C = "B", D = "C"}}}>First</a></li>
        <li><a link={page {A = "D", B = {C = "E", D = "F"}}}>Second</a></li>
</body></html>