comparison demo/noisy.ur @ 782:a44daa674810

Make Effectize more precise
author Adam Chlipala <adamc@hcoop.net>
date Tue, 05 May 2009 10:23:16 -0400
parents 15ddd64a5113
children ed06e25c70ef
comparison
equal deleted inserted replaced
781:c884a42599f3 782:a44daa674810
23 alert (case ao of 23 alert (case ao of
24 None => "Nada" 24 None => "Nada"
25 | Some a => a); 25 | Some a => a);
26 check ls' 26 check ls'
27 27
28 fun action () = 28 fun main () =
29 idAdd <- source ""; 29 idAdd <- source "";
30 aAdd <- source ""; 30 aAdd <- source "";
31 31
32 idDel <- source ""; 32 idDel <- source "";
33 33
39 <ctextbox source={aAdd}/><br/> 39 <ctextbox source={aAdd}/><br/>
40 <br/> 40 <br/>
41 <button value="Delete" onclick={id <- get idDel; del (readError id)}/> 41 <button value="Delete" onclick={id <- get idDel; del (readError id)}/>
42 <ctextbox source={idDel}/> 42 <ctextbox source={idDel}/>
43 </body></xml> 43 </body></xml>
44
45 fun main () = return <xml><body>
46 <form><submit value="Begin demo" action={action}/></form>
47 </body></xml>