summaryrefslogtreecommitdiff
path: root/tests/link.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/link.ur')
-rw-r--r--tests/link.ur7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/link.ur b/tests/link.ur
new file mode 100644
index 00000000..26f093ed
--- /dev/null
+++ b/tests/link.ur
@@ -0,0 +1,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>