annotate tests/textarea.ur @ 1272:56bd4a4f6e66

Some serious bug-fix work to get HTML example to compile; this includes fixing a bug with 'val' patterns in Unnest and the need for more local reduction in Especialize
author Adam Chlipala <adamc@hcoop.net>
date Thu, 03 Jun 2010 13:04:37 -0400
parents 71bafe66dbe1
children
rev   line source
adamc@152 1 val handler = fn x => <html><body>
adamc@152 2 You entered: {cdata x.A}
adamc@152 3 </body></html>
adamc@152 4
adamc@152 5 val main = fn () => <html><body>
adamc@152 6 <lform>
adamc@152 7 <ltextarea{#A}/>
adamc@152 8 <submit action={handler}/>
adamc@152 9 </lform>
adamc@152 10 </body></html>