view tests/reactive4.ur @ 2291:50ad02829abd

Make cache flushes happen immediately instead of at end of transaction.
author Ziv Scully <ziv@mit.edu>
date Tue, 17 Nov 2015 02:44:37 -0500
parents bb8463c3b712
children
line wrap: on
line source
fun main () : transaction page =
  x <- source <xml>TEST</xml>;
  return <xml><body>
    <dyn signal={y <- signal x; return <xml>!{y}?</xml>}/>
    <br/>
    <a onclick={set x <xml>CHANGEUP</xml>}>Oh My</a>
  </body></xml>