view tests/rec3.ur @ 2164:728aaeea12fd

Add a simple 'make test' target
author Adam Chlipala <adam@chlipala.net>
date Wed, 29 Jul 2015 10:08:03 -0400
parents 71bafe66dbe1
children
line wrap: on
line source
val rec main = fn () => <html><body>
        <a link={aux ()}>See another page</a>
</body></html>

and aux = fn () => <html><body>
        <h1>The Main Event</h1>

        {auxer ()}
</body></html>

and auxer = fn () => <body>
        <a link={main ()}>Back to square one</a>
</body>