Mercurial > urweb
annotate demo/counter.ur @ 2209:0ca11d57c175
Cleans up interface (it's now a command line option) and renames project to "sqlcache" in the all-one-word style. Still has issues to do with concurrency, retrying transactions, and foreign function calls that either rely on state or have side effects.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Sat, 31 May 2014 03:08:16 -0400 |
parents | 4359e185d3af |
children |
rev | line source |
---|---|
adam@1301 | 1 (* Workhorse function, which [main] will call *) |
adamc@416 | 2 fun counter n = return <xml><body> |
adamc@416 | 3 Current counter: {[n]}<br/> |
adamc@416 | 4 <a link={counter (n + 1)}>Increment</a><br/> |
adamc@416 | 5 <a link={counter (n - 1)}>Decrement</a> |
adamc@416 | 6 </body></xml> |
adamc@416 | 7 |
adamc@416 | 8 fun main () = counter 0 |