diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-12-20 15:46:48 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-12-20 15:46:48 -0500 |
commit | e6655be0a7d1dd5864afce14bd3c68873025a84f (patch) | |
tree | b89e13e840fa39618ad79ac3a89de9ab9370d441 /tests/sreturn.ur | |
parent | 38f0a1e10825923e44f22bdd559291b32eb3173d (diff) |
Initial <dyn> support
Diffstat (limited to 'tests/sreturn.ur')
-rw-r--r-- | tests/sreturn.ur | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/sreturn.ur b/tests/sreturn.ur new file mode 100644 index 00000000..62db377d --- /dev/null +++ b/tests/sreturn.ur @@ -0,0 +1,5 @@ +fun main () : transaction page = return <xml><body> + <p>Before</p> + <p><dyn signal={return <xml>Hi!</xml>}/></p> + <p>After</p> +</body></xml> |