annotate tests/showTime.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 438561303d02
children
rev   line source
adam@1629 1 fun main () : transaction page =
adam@1629 2 tm <- now;
adam@1629 3 s <- source tm;
adam@1629 4 return <xml><body>
adam@1629 5 <b>Server:</b> {[tm]}<br/>
adam@1629 6 <b>Client:</b> <dyn signal={v <- signal s; return (txt v)}/>
adam@1629 7 <button value="Recalculate" onclick={tm <- now; set s tm}/>
adam@1629 8 </body></xml>