annotate tests/nest2.ur @ 1595:154cfe2eb366

Better error messages about server-side use of client-side functions
author Adam Chlipala <adam@chlipala.net>
date Mon, 14 Nov 2011 09:15:10 -0500
parents 787d4931fb07
children
rev   line source
adamc@453 1 fun wooho (wrap : xbody -> transaction page) =
adamc@453 2 let
adamc@453 3 fun subPage n =
adamc@453 4 let
adamc@453 5 fun subberPage () = wrap <xml>{[n]}</xml>
adamc@453 6 in
adamc@453 7 wrap <xml><a link={subberPage ()}>Go</a></xml>
adamc@453 8 end
adamc@453 9 in
adamc@453 10 subPage 0
adamc@453 11 end
adamc@453 12
adamc@453 13 fun wrap x = return <xml><body>{x}</body></xml>
adamc@453 14
adamc@453 15 fun main () = wooho wrap