comparison demo/batch.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
35 <tr> <th>Id</th> <th>A</th> </tr> 35 <tr> <th>Id</th> <th>A</th> </tr>
36 {show' ls} 36 {show' ls}
37 </table></xml>}/></xml> 37 </table></xml>}/></xml>
38 end 38 end
39 39
40 fun action () = 40 fun main () =
41 lss <- source Nil; 41 lss <- source Nil;
42 batched <- source Nil; 42 batched <- source Nil;
43 43
44 id <- source ""; 44 id <- source "";
45 a <- source ""; 45 a <- source "";
77 <h2>Already batched:</h2> 77 <h2>Already batched:</h2>
78 {show False batched} 78 {show False batched}
79 <button value="Execute" onclick={exec ()}/> 79 <button value="Execute" onclick={exec ()}/>
80 </body></xml> 80 </body></xml>
81 end 81 end
82
83 fun main () = return <xml><body>
84 <form><submit value="Begin demo" action={action}/></form>
85 </body></xml>