diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-12-19 11:47:18 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-12-19 11:47:18 -0500 |
commit | ed7c55c7d3d47e59b73cda4d1d7663bec6728934 (patch) | |
tree | 1244a9d96e9fb847422bb0bc447d01e77cbe1e9e /tests/reactive.ur | |
parent | a2854d6b8db55b9c6e69d16262ea182ab9bd307d (diff) |
Creation of sources in server code
Diffstat (limited to 'tests/reactive.ur')
-rw-r--r-- | tests/reactive.ur | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/reactive.ur b/tests/reactive.ur new file mode 100644 index 00000000..cb49541f --- /dev/null +++ b/tests/reactive.ur @@ -0,0 +1,4 @@ +fun main () : transaction page = + x <- source (); + y <- source (); + return <xml><body>Hi!</body></xml> |