diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-12-21 12:30:57 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-12-21 12:30:57 -0500 |
commit | c2da8978286838c438aa471631155c4d6d8f760e (patch) | |
tree | 8193826346d3d4131730c22f1c5fb17eee1e0576 /tests/sbind.ur | |
parent | 90bac0f10328d81ab18be3726779fed0cf77f8dd (diff) |
Handling singnal bind
Diffstat (limited to 'tests/sbind.ur')
-rw-r--r-- | tests/sbind.ur | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/sbind.ur b/tests/sbind.ur new file mode 100644 index 00000000..6e3ca782 --- /dev/null +++ b/tests/sbind.ur @@ -0,0 +1,5 @@ +fun main () : transaction page = return <xml><body> + <p>Before</p> + <p><dyn signal={s <- return "Bye"; return <xml>{[s]}</xml>}/></p> + <p>After</p> +</body></xml> |