annotate tests/selfRpc.ur @ 2261:f81f1930c5d6

Fix SQL-parsing and declaration-ordering bugs.
author Ziv Scully <ziv@mit.edu>
date Wed, 30 Sep 2015 00:33:52 -0400
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>