summaryrefslogtreecommitdiff
path: root/tests/link.lac
blob: 4e2918e0859d2d6e7083423f057a3c347e894242 (plain)
1
2
3
4
5
6
7
8
9
val ancillary : {} -> xhtml = fn () => <html>
        Welcome to the ancillary page!
</html>

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

        <a link={ancillary ()}>Alternate route!</a>
</body></html>