annotate tests/reactive3.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 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>