view tests/record_page.ur @ 2269:f7bc7c11a656

Make SQL caches use more of the pure caching machinery, but it's brittle.
author Ziv Scully <ziv@mit.edu>
date Thu, 15 Oct 2015 00:52:04 -0400
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>