annotate demo/counter.ur @ 428:3ca00463de20

Make *_w function prototypes match header file
author adamc@hnf.impredicative.com
date Fri, 24 Oct 2008 19:59:17 -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