Mercurial > urweb
annotate demo/counter.ur @ 1906:0d2fdc2cc46c
Allow building in a separate build directory
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
Makefile.am | 30 +++---
src/c/Makefile.am | 2 +-
src/compiler.mlb | 2 +-
src/sources | 302 +++++++++++++++++++++++++++---------------------------
4 files changed, 168 insertions(+), 168 deletions(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Fri, 22 Nov 2013 09:36:14 -0500 |
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 |