log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
annotate demo/rec.ur @ 407:345fcf91c806
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Rec demo
author
Adam Chlipala <adamc@hcoop.net>
date
Tue, 21 Oct 2008 17:34:20 -0400
parents
children
rev
line source
adamc@407
1
fun main () = return <xml><body>
adamc@407
2
<a link={other ()}>Go to the other one!</a>
adamc@407
3
</body></xml>
adamc@407
4
adamc@407
5
and other () = return <xml><body>
adamc@407
6
<a link={main ()}>Return to <tt>main</tt>!</a>
adamc@407
7
</body></xml>