Mercurial > urweb
view tests/sendurl.ur @ 1701:6a4461757829
Remove weird special case for FFI functions whose first arguments have type [unit]
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 14 Mar 2012 09:06:23 -0400 |
parents | 82ac88b4e0a7 |
children |
line wrap: on
line source
fun main () = let fun getIt () = return (bless "http://www.yahoo.com/") in s <- source <xml/>; return <xml><body> <dyn signal={signal s}/> <button onclick={v <- rpc (getIt ()); set s <xml><a href={v}>Go!</a></xml>}/> </body></xml> end