view tests/dynSpan.ur @ 997:588b31fe6cc9

Put right date stamp in CHANGELOG
author Adam Chlipala <adamc@hcoop.net>
date Fri, 09 Oct 2009 09:50:26 -0400
parents cc58941da3e2
children
line wrap: on
line source
val x = 1

fun main () : transaction page =
    s <- source "!";
    return <xml><body>
      <dyn signal={x <- signal s; return <xml><span>{[x]}</span></xml>}/>
      <button onclick={x <- get s; set s (x ^ "!")}/>
    </body></xml>