Mercurial > urweb
view tests/pass.ur @ 1455:913d9c2f55c9
Corify Basis.unit to empty record; this is needed so that specialize
can see that they are equivalent.
author | Karn Kallio <kkallio@eka> |
---|---|
date | Fri, 06 May 2011 16:24:45 -0430 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val handler = fn r => <html><body> <li> Name: {cdata r.Nam}</li> <li> Password: {cdata r.Word}</li> </body></html> val main : unit -> page = fn () => <html><body> <lform> Name: <textbox{#Nam} /><br/> Password: <password{#Word} /><br/> <submit action={handler}/> </lform> </body></html>