annotate tests/cselect.ur @ 2257:28a541bd2d23

Use referenced (rather than all) free variables as keys for pure caches.
author Ziv Scully <ziv@mit.edu>
date Sun, 27 Sep 2015 14:46:12 -0400
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>