comparison tests/plink3.ur @ 244:71bafe66dbe1

Laconic -> Ur
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 08:32:18 -0400
parents tests/plink3.lac@f7c6ceb87bbd
children
comparison
equal deleted inserted replaced
243:2b9dfaffb008 244:71bafe66dbe1
1 val pA = fn size1 => fn size2 => fn size3 => <html><body>
2 <p><font size={size1}>Hello</font> <font size={size2}>World!</font></p>
3
4 <p><font size={size3}>Epilogue</font></p>
5 </body></html>
6
7 val main = fn () => <html><body>
8 <li> <a link={pA 5 10 1}>Size 5</a></li>
9 <li> <a link={pA 10 5 10}>Size 10</a></li>
10 </body></html>