annotate tests/link.ur @ 315:e21d0dddda09

Unpoly non-recursive function
author Adam Chlipala <adamc@hcoop.net>
date Thu, 11 Sep 2008 09:36:47 -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>