annotate demo/link.ur @ 2190:22117edf8fd3

After a tricky debugging session, limit visibility of type-class instances from anonymous modules
author Adam Chlipala <adam@chlipala.net>
date Sun, 01 Nov 2015 16:33:14 -0500
parents 6a0e54400805
children
rev   line source
adamc@379 1 fun target () = return <xml><body>
adamc@379 2 Welcome!
adamc@379 3 </body></xml>
adamc@379 4
adamc@379 5 fun main () = return <xml><body>
adamc@413 6 <a link={target ()}>Go there</a>
adamc@379 7 </body></xml>