Mercurial > urweb
view tests/invurl.ur @ 2134:752e5efe9da9
Use hyperref in manual
This allows the table of contents to show up properly in PDF readers.
author | Julian Squires <julian@cipht.net> |
---|---|
date | Fri, 24 Apr 2015 07:43:22 -0400 |
parents | 3621f486ce72 |
children |
line wrap: on
line source
val r = { F = fn () => return <xml/> } fun main () : transaction page = return <xml><body> <a link={r.F ()}>Go</a> </body></xml> fun main' (r' : {F : unit -> transaction page}) : transaction page = return <xml><body> <a link={r'.F ()}>Go</a> </body></xml>