annotate tests/selfRpc.ur @ 2257:28a541bd2d23

Use referenced (rather than all) free variables as keys for pure caches.
author Ziv Scully <ziv@mit.edu>
date Sun, 27 Sep 2015 14:46:12 -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>