comparison tests/plink.ur @ 244:71bafe66dbe1

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