Mercurial > urweb
view demo/increment.ur @ 1837:7cf34f8b7b93
Add ./configure MLTONARGS option for MLTON arguments
Named MLTONARGS based on CCARGS.
author | Jason Gross <jgross@mit.edu> |
---|---|
date | Wed, 12 Dec 2012 14:47:06 -0500 |
parents | e6bc6bbd7a32 |
children |
line wrap: on
line source
sequence seq fun increment () = nextval seq fun main () = src <- source 0; return <xml><body> <dyn signal={n <- signal src; return <xml>{[n]}</xml>}/> <button value="Update" onclick={fn _ => n <- rpc (increment ()); set src n}/> </body></xml>