summaryrefslogtreecommitdiff
path: root/tests/link.ur
blob: 26f093edac5c21f3859293903e056e08ed85880b (plain)
1
2
3
4
5
6
7
val ancillary = fn () => <html>
        Welcome to the ancillary page!
</html>

val main : unit -> page = fn () => <html><body>
        <a link={ancillary ()}>Enter the unknown!</a>
</body></html>