annotate tests/nestedInput.ur @ 2276:c05f9a5e0f0f

Progress on free paths, but consolidation seems to fail more with them.
author Ziv Scully <ziv@mit.edu>
date Mon, 09 Nov 2015 13:37:31 -0500
parents 9a1547596712
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