annotate tests/recReal2.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
rev   line source
adamc@131 1 val rec endlessList1 = fn () => <body>
adamc@131 2 <li> Buy eggs.</li>
adamc@131 3 {endlessList2 ()}
adamc@131 4 </body>
adamc@131 5
adamc@131 6 and endlessList2 = fn () => <body>
adamc@131 7 <li> Buy milk.</li>
adamc@131 8 {endlessList1 ()}
adamc@131 9 </body>
adamc@131 10
adamc@131 11 val main = fn () => <html><body>
adamc@131 12 {endlessList1 ()}
adamc@131 13 </body></html>