annotate tests/reactive3.ur @ 725:4c5796512edc

Catching duplicate cookie and style paths
author Adam Chlipala <adamc@hcoop.net>
date Thu, 16 Apr 2009 12:07:21 -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>