annotate tests/snest.ur @ 1905:cd1cfecc8c72

Remove autogenerated config.h.in from version control Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- .hgignore | 1 + include/urweb/config.h.in | 104 ---------------------------------------------- 2 files changed, 1 insertion(+), 104 deletions(-) delete mode 100644 include/urweb/config.h.in
author Anders Kaseorg <andersk@mit.edu>
date Fri, 22 Nov 2013 09:36:14 -0500
parents 8932f855fa85
children
rev   line source
adamc@1039 1 fun main () =
adamc@1039 2 s1 <- source False;
adamc@1039 3 s2 <- source False;
adamc@1039 4
adamc@1039 5 return <xml><body>
adamc@1039 6 <dyn signal={s1 <- signal s1;
adamc@1039 7 return (if s1 then
adamc@1039 8 <xml><dyn signal={s2 <- signal s2;
adamc@1039 9 return <xml>{[s2]}</xml>}/></xml>
adamc@1039 10 else
adamc@1039 11 <xml>Not yet</xml>)}/>
adamc@1039 12 <hr/>
adamc@1039 13 <button value="s1" onclick={set s1 True}/>
adamc@1039 14 <button value="s2" onclick={set s2 True}/>
adamc@1039 15 </body></xml>