annotate tests/reactive2.ur @ 1989:210fb3dfc483

Some more nested functor bug-fixing, including generating fresh internal names at applications; still need to debug issues with datatype constructors
author Adam Chlipala <adam@chlipala.net>
date Thu, 20 Feb 2014 10:27:15 -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>