annotate tests/selfRpc.ur @ 2252:e843a04499d4

Revert to revision 2222.
author Ziv Scully <ziv@mit.edu>
date Mon, 21 Sep 2015 10:16:55 -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>