summaryrefslogtreecommitdiff
path: root/tests/both2.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/both2.ur')
-rw-r--r--tests/both2.ur14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/both2.ur b/tests/both2.ur
new file mode 100644
index 00000000..c3f25cc9
--- /dev/null
+++ b/tests/both2.ur
@@ -0,0 +1,14 @@
+fun main () : transaction page =
+ let
+ fun submit r = return <xml/>
+ in
+ return <xml>
+ <body>
+ <form>
+ <textbox{#Text}/><submit action={submit}/>
+ </form>
+ </body>
+ </xml>
+ end
+
+