annotate tests/vlad4.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 fe470db7feea
children
rev   line source
adam@1398 1 fun main () : transaction page =
adam@1398 2 s <- source "";
adam@1398 3 return <xml><body>
adam@1398 4 <ctextbox source={s} value="123" onchange={s <- get s; alert (s ^ "!")}/>
adam@1398 5 <dyn signal={s <- signal s; return (txt s)}/>
adam@1398 6 </body></xml>