view tests/linksF.ur @ 2209:0ca11d57c175

Cleans up interface (it's now a command line option) and renames project to "sqlcache" in the all-one-word style. Still has issues to do with concurrency, retrying transactions, and foreign function calls that either rely on state or have side effects.
author Ziv Scully <ziv@mit.edu>
date Sat, 31 May 2014 03:08:16 -0400
parents 71bafe66dbe1
children
line wrap: on
line source
val pC : unit -> xhtml = fn () => <html><body>
        <h1>Page C</h1>
</body></html>

val pB : unit -> xhtml = fn () => <html><body>
        <h1>Page B</h1>

        <li> <a link={pC ()}>C</a></li>
</body></html>

val pA : unit -> xhtml = fn () => <html><body>
        <h1>Page A</h1>

        <li> <a link={pB ()}>B</a></li>
        <li> <a link={pC ()}>C</a></li>
</body></html>

val main : unit -> xhtml = fn () => <html><body>
        <h1>Main</h1>

        <li> <a link={pA ()}>A</a></li>
        <li> <a link={pB ()}>B</a></li>
        <li> <a link={pC ()}>C</a></li>
</body></html>