annotate tests/ccheckbox.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 37f5a23446b2
children
rev   line source
adam@1610 1 fun main () : transaction page =
adam@1610 2 s <- source True;
adam@1610 3 t <- source 1;
adam@1610 4 return <xml><body><ccheckbox source={s} onclick={set t 3}/>
adam@1610 5 <dyn signal={s <- signal s;
adam@1610 6 t <- signal t;
adam@1610 7 return <xml>{[s]} {[t]}</xml>}/>
adam@1610 8 </body></xml>