view tests/record_page.ur @ 1202:509a6d7b60fb

Iflow tested with positive and negative cases
author Adam Chlipala <adamc@hcoop.net>
date Sun, 04 Apr 2010 16:17:23 -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>