annotate tests/cselect.ur @ 2288:98f96a976ede

Finish locking, but it's not yet tested rigorously.
author Ziv Scully <ziv@mit.edu>
date Fri, 13 Nov 2015 11:03:09 -0500
parents 9330ba3a2799
children
rev   line source
adamc@797 1 fun main () =
adamc@797 2 s <- source "";
adamc@797 3 return <xml><body>
adamc@799 4 <cselect source={s} onchange={v <- get s; alert ("Now it's " ^ v)}>
adamc@797 5 <coption>Wilbur</coption>
adamc@797 6 <coption>Walbur</coption>
adamc@797 7 </cselect>
adamc@797 8
adamc@797 9 Hello, I'm <dyn signal={s <- signal s; return <xml>{[s]}</xml>}/>.
adamc@797 10 I'll be your waiter for this evening.
adamc@797 11 </body></xml>