annotate tests/link.ur @ 314:a07f476d9b61

Termination checking allows anything in links and actions
author Adam Chlipala <adamc@hcoop.net>
date Tue, 09 Sep 2008 12:36:13 -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>