view tests/rec3.lac @ 222:36fef91a6bbf

Integer and float constants in SQL
author Adam Chlipala <adamc@hcoop.net>
date Sat, 16 Aug 2008 17:50:10 -0400
parents 18299126a343
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>