Mercurial > urweb
diff tests/link.lac @ 144:f0d3402184d1
Simple forms work
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 22 Jul 2008 15:12:20 -0400 |
parents | 2d6116de9cca |
children |
line wrap: on
line diff
--- a/tests/link.lac Sun Jul 20 13:30:19 2008 -0400 +++ b/tests/link.lac Tue Jul 22 15:12:20 2008 -0400 @@ -1,7 +1,7 @@ -val ancillary : {} -> xhtml = fn () => <html> +val ancillary = fn () => <html> Welcome to the ancillary page! </html> -val main : {} -> xhtml = fn () => <html><body> +val main : unit -> page = fn () => <html><body> <a link={ancillary ()}>Enter the unknown!</a> </body></html>