view tests/record_page.ur @ 971:c22e524a6dd3

Basic arithmetic working with interpretation
author Adam Chlipala <adamc@hcoop.net>
date Tue, 22 Sep 2009 13:23:27 -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>