Mercurial > urweb
view tests/both2.ur @ 1181:618f9f458da9
Got split1 working, but noticed a nasty type inference bug with transplanted unification variables
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sat, 06 Mar 2010 19:14:48 -0500 |
parents | a5eb8f87bc17 |
children |
line wrap: on
line source
fun main () : transaction page = let fun submit r = return <xml/> in return <xml> <body> <form> <textbox{#Text}/><submit action={submit}/> </form> </body> </xml> end