Mercurial > urweb
comparison tests/plink.lac @ 120:6230bdd122e7
Passing an argument to a web function
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 13 Jul 2008 20:07:10 -0400 |
parents | |
children | f0d3402184d1 |
comparison
equal
deleted
inserted
replaced
119:7fdc146b2bc2 | 120:6230bdd122e7 |
---|---|
1 val pA = fn size => <html><body> | |
2 <font size={size}>Hello World!</font> | |
3 </body></html> | |
4 | |
5 val main = 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> |