view tests/active.ur @ 2069:262dd74df39c

Replace common "if(!quiet) printf(...)" pattern with a macro
author Sergey Mironov <grrwlf@gmail.com>
date Tue, 02 Sep 2014 17:36:14 +0000
parents d794149b3713
children
line wrap: on
line source
fun counter' () =
    s <- source 0;
    return <xml>
      <dyn signal={n <- signal s; return (txt n)}/>
      <button onclick={fn _ => n <- get s; set s (n + 1)}/>
    </xml>

fun counter () = <xml><active code={counter' ()}/></xml>

fun main () : transaction page = return <xml><body>
  {counter ()}
  <hr/>
  {counter ()}
</body></xml>