annotate tests/selfRpc.ur @ 2237:e79ef5792c8b

Fix bug in redundancy checking and use finer formula for UPDATE statements.
author Ziv Scully <ziv@mit.edu>
date Sun, 05 Jul 2015 23:57:28 -0700
parents 385a1b799a74
children
rev   line source
adam@1695 1 fun test () =
adam@1695 2 k <- source <xml/>;
adam@1695 3 return <xml><button onclick={r <- rpc (test ()); set k r}/></xml>
adam@1695 4
adam@1695 5 fun main () : transaction page =
adam@1695 6 h <- test ();
adam@1695 7 return <xml><body>{h}</body></xml>