summaryrefslogtreecommitdiff
path: root/tests/reactive2.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-12-30 10:49:42 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-12-30 10:49:42 -0500
commit76c5b74abd4450a6a68084e08a7a7946e0e31fe9 (patch)
tree5fb21e9104e07f932bbb5571766def02f7ab0813 /tests/reactive2.ur
parentaf2648b1927b8af2d9375120a6c7a9e3d18f215d (diff)
Setting a source server-side
Diffstat (limited to 'tests/reactive2.ur')
-rw-r--r--tests/reactive2.ur6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/reactive2.ur b/tests/reactive2.ur
new file mode 100644
index 00000000..7164468e
--- /dev/null
+++ b/tests/reactive2.ur
@@ -0,0 +1,6 @@
+fun main () : transaction page =
+ x <- source <xml>TEST</xml>;
+ set x <xml>HI</xml>;
+ return <xml><body>
+ <dyn signal={signal x}/>
+ </body></xml>