view tests/invurl.ur @ 1960:93f3e35a7967

Manual: remove database version numbers from Debian package names, where possible
author Adam Chlipala <adam@chlipala.net>
date Sat, 18 Jan 2014 08:34:19 -0500
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>