Mercurial > urweb
comparison tests/ffieff.ur @ 1878:df6a040f5389
Make transactional FFI functions effectful by default
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 10 Oct 2013 18:01:30 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1877:22b44fe822bf | 1878:df6a040f5389 |
---|---|
1 open Ffi_eff | |
2 | |
3 fun main () : transaction page = return <xml><body> | |
4 <button value="shout" onclick={fn _ => shout "Hi!"; shout "Bye!"}/> | |
5 <button value="sneakyShout" onclick={fn _ => let val x = sneakyShout "Whoa" in return () end}/> | |
6 </body></xml> |