Mercurial > urweb
view tests/invurl.ur @ 1999:a1d3fbdcc897
Add <pre> tag support
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Mon, 24 Feb 2014 09:10:31 +0000 |
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>