diff options
Diffstat (limited to 'tests/html_fn.ur')
-rw-r--r-- | tests/html_fn.ur | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/html_fn.ur b/tests/html_fn.ur new file mode 100644 index 00000000..fab70cc3 --- /dev/null +++ b/tests/html_fn.ur @@ -0,0 +1,9 @@ +val main : unit -> page = fn () => <html> + <head> + <title>Hello World!</title> + </head> + + <body> + <b>Hello</b> <i>World</i>! + </body> +</html> |