log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
annotate tests/nestedInput.ur @ 2090:9a1547596712
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Fix XML syntax for closing <input> tags
author
Adam Chlipala <adam@chlipala.net>
date
Thu, 18 Dec 2014 07:48:37 -0500
parents
children
rev
line source
adam@2090
1
fun main () : transaction page =
adam@2090
2
let
adam@2090
3
fun handler _ = return <xml/>
adam@2090
4
in
adam@2090
5
return <xml><body>
adam@2090
6
<form>
adam@2090
7
<submit action={handler}>Uh oh!</submit>
adam@2090
8
</form>
adam@2090
9
</body></xml>
adam@2090
10
end