annotate tests/reactive3.ur @ 2237:e79ef5792c8b

Fix bug in redundancy checking and use finer formula for UPDATE statements.
author Ziv Scully <ziv@mit.edu>
date Sun, 05 Jul 2015 23:57:28 -0700
parents 0094e0242100
children
rev   line source
adamc@579 1 fun main () : transaction page =
adamc@579 2 x <- source <xml>TEST</xml>;
adamc@579 3 return <xml><body>
adamc@579 4 <dyn signal={signal x}/>
adamc@579 5 <br/>
adamc@579 6 <a onclick={alert "Changing...."; set x <xml>CHANGEUP</xml>}>Oh My</a>
adamc@579 7 </body></xml>