Mercurial > urweb
view tests/activeBlock.ur @ 2061:e7b9002c2bfc
Return to working version mode
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Tue, 19 Aug 2014 11:23:26 -0400 |
parents | 4671afac15af |
children |
line wrap: on
line source
fun main () : transaction page = return <xml><body> <active code={s <- source ""; return <xml> <dyn signal={s <- signal s; return (txt s)}/> <button onclick={fn _ => set s "Hi!"}/> </xml>}/> <active code={sleep 1; return <xml>Hi!</xml>}/> <active code={spawn (sleep 1; alert "Hi!"); return <xml>Success</xml>}/> </body></xml>