annotate tests/link.ur @ 362:24a31b35e08f

Reusable column handlers for Crud
author Adam Chlipala <adamc@hcoop.net>
date Tue, 14 Oct 2008 17:18:59 -0400
parents 71bafe66dbe1
children 6fd102fa28f9
rev   line source
adamc@144 1 val ancillary = fn () => <html>
adamc@110 2 Welcome to the ancillary page!
adamc@110 3 </html>
adamc@110 4
adamc@144 5 val main : unit -> page = fn () => <html><body>
adamc@110 6 <a link={ancillary ()}>Enter the unknown!</a>
adamc@110 7 </body></html>