annotate demo/counter.ur @ 1272:56bd4a4f6e66

Some serious bug-fix work to get HTML example to compile; this includes fixing a bug with 'val' patterns in Unnest and the need for more local reduction in Especialize
author Adam Chlipala <adamc@hcoop.net>
date Thu, 03 Jun 2010 13:04:37 -0400
parents 679b2fbbd4d0
children 4359e185d3af
rev   line source
adamc@416 1 fun counter n = return <xml><body>
adamc@416 2 Current counter: {[n]}<br/>
adamc@416 3 <a link={counter (n + 1)}>Increment</a><br/>
adamc@416 4 <a link={counter (n - 1)}>Decrement</a>
adamc@416 5 </body></xml>
adamc@416 6
adamc@416 7 fun main () = counter 0