annotate tests/cselect.ur @ 2278:b7615e0ac4b0

Fix bug in and clean up free path code.
author Ziv Scully <ziv@mit.edu>
date Tue, 10 Nov 2015 12:35:00 -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>