changeset 122:f7c6ceb87bbd

Three-argument web function test
author Adam Chlipala <adamc@hcoop.net>
date Sun, 13 Jul 2008 20:25:25 -0400
parents 91027db5a07c
children e3041657d653
files tests/plink3.lac
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/plink3.lac	Sun Jul 13 20:25:25 2008 -0400
@@ -0,0 +1,10 @@
+val pA = fn size1 => fn size2 => fn size3 => <html><body>
+        <p><font size={size1}>Hello</font> <font size={size2}>World!</font></p>
+
+        <p><font size={size3}>Epilogue</font></p>
+</body></html>
+
+val main = fn () => <html><body>
+        <li> <a link={pA 5 10 1}>Size 5</a></li>
+        <li> <a link={pA 10 5 10}>Size 10</a></li>
+</body></html>