diff tests/plink2.ur @ 244:71bafe66dbe1

Laconic -> Ur
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 08:32:18 -0400
parents tests/plink2.lac@f214c535d253
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/plink2.ur	Sun Aug 31 08:32:18 2008 -0400
@@ -0,0 +1,8 @@
+val pA : int -> int -> page = fn size1 => fn size2 => <html><body>
+        <font size={size1}>Hello</font> <font size={size2}>World!</font>
+</body></html>
+
+val main : unit -> page = fn () => <html><body>
+        <li> <a link={pA 5 10}>Size 5</a></li>
+        <li> <a link={pA 10 5}>Size 10</a></li>
+</body></html>