summaryrefslogtreecommitdiff
path: root/tests/both2.ur
blob: c3f25cc99bd29045085ccec6dc8d8026d90fd4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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