Mercurial > urweb
view tests/checkbox.ur @ 1231:5fa8ae2a34e3
Avoid pointless rebuilding of hypothesis E-graphs
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 13 Apr 2010 09:25:45 -0400 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val handler = fn x => <html><body> {if x.A then cdata "Yes" else cdata "No"} </body></html> val main = fn () => <html><body> <lform> <checkbox{#A}/> How about it?<br/> <submit action={handler}/> </lform> </body></html>