view demo/counter.ur @ 1456:d674fb9499c4

Include type attribute in script tag for generating valid XHTML.
author Karn Kallio <kkallio@eka>
date Fri, 06 May 2011 20:51:40 -0430
parents 4359e185d3af
children
line wrap: on
line source
(* Workhorse function, which [main] will call *)
fun counter n = return <xml><body>
  Current counter: {[n]}<br/>
  <a link={counter (n + 1)}>Increment</a><br/>
  <a link={counter (n - 1)}>Decrement</a>
</body></xml>

fun main () = counter 0