Mercurial > urweb
view tests/channel.ur @ 2153:39bd1d4007a9
Apply syntax sugar for 'class' attribute to <form> as well
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Mon, 08 Jun 2015 11:11:46 -0400 |
parents | f73913d97a40 |
children |
line wrap: on
line source
fun main () : transaction page = ch <- channel; let fun make () = subscribe ch; send ch "Hello world!" fun echo () = msg <- recv ch; alert(msg); echo () fun onload () = make (); echo () fun haveAnother () = send ch "Here's another." in return <xml><body onload={onload ()}> <button value="Another?" onclick={haveAnother ()}/> </body></xml> end