annotate tests/reactive2.ur @ 2190:22117edf8fd3

After a tricky debugging session, limit visibility of type-class instances from anonymous modules
author Adam Chlipala <adam@chlipala.net>
date Sun, 01 Nov 2015 16:33:14 -0500
parents 3d56940120b1
children
rev   line source
adamc@577 1 fun main () : transaction page =
adamc@577 2 x <- source <xml>TEST</xml>;
adamc@577 3 set x <xml>HI</xml>;
adamc@577 4 return <xml><body>
adamc@577 5 <dyn signal={signal x}/>
adamc@577 6 </body></xml>