log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
annotate tests/csdebug.ur @ 1625:bd34a4af516a
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Change client-side debug to use console.debug
author
Adam Chlipala <adam@chlipala.net>
date
Sat, 03 Dec 2011 16:25:09 -0500
parents
children
rev
line source
adam@1625
1
fun main () : transaction page =
adam@1625
2
n <- source 0;
adam@1625
3
return <xml><body>
adam@1625
4
<button onclick={n' <- get n; set n (n' + 1); debug ("Message: " ^ show n')}/>
adam@1625
5
</body></xml>