summaryrefslogtreecommitdiff
path: root/tests/pathcheck.ur
blob: 6d2359cd36aa7a2716415fa9b52998cbb2a7830b (plain)
1
2
3
4
5
6
7
8
9
fun ancillary () : transaction page = return <xml/>

fun ancillary () = return <xml>
        Welcome to the ancillary page!
</xml>

fun main () : transaction page = return <xml><body>
        <a link={ancillary ()}>Enter the unknown!</a>
</body></xml>