annotate tests/setInner.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 06791667937e
children
rev   line source
adam@1702 1 fun main () : transaction page =
adam@1702 2 x <- fresh;
adam@1702 3 s <- source 0;
adam@1702 4 q <- source "";
adam@1702 5 return <xml><body>
adam@1702 6 <span id={x}/>
adam@1702 7 <button onclick={v <- get q; set q (v ^ "!"); Ffi.setIt x <xml><dyn signal={n <- signal s; return <xml>n = {[n]}</xml>}/>{[v]}</xml>}/>
adam@1702 8 <button onclick={n <- get s; set s (n + 1)}/>
adam@1702 9 </body></xml>