summaryrefslogtreecommitdiff
path: root/tests/toString.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/toString.ur')
-rw-r--r--tests/toString.ur6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/toString.ur b/tests/toString.ur
new file mode 100644
index 0000000..6a22fe6
--- /dev/null
+++ b/tests/toString.ur
@@ -0,0 +1,6 @@
+fun main () : transaction page = return <html><body>
+ 6 = {cdata (show _ 6)}<br/>
+ 12.34 = {cdata (show _ 12.34)}<br/>
+ Hi = {cdata (show _ "Hi")}<br/>
+ False = {cdata (show _ False)}<br/>
+</body></html>