annotate tests/reactive5.ur @ 2235:0aae15c2a05a

Refactored a lot and fixed an and/or swap, but still not good on current test.
author Ziv Scully <ziv@mit.edu>
date Mon, 29 Jun 2015 01:33:47 -0700
parents e955d50c389d
children
rev   line source
adamc@581 1 fun main () : transaction page =
adamc@581 2 x <- source <xml>A</xml>;
adamc@581 3 y <- source <xml>B</xml>;
adamc@581 4 return <xml><body>
adamc@581 5 <dyn signal={x <- signal x; y <- signal y; return <xml>{x}, {y}</xml>}/>
adamc@581 6 <br/>
adamc@581 7 <a onclick={set x <xml>C</xml>}>Change x</a><br/>
adamc@581 8 <a onclick={set y <xml>D</xml>}>Change y</a><br/>
adamc@581 9 </body></xml>