annotate tests/nest2.ur @ 2174:ce312cad5ecd

Use correct OpenSSL thread safety macros on OS X (closes #209) Create an Autoconf test to determine if pthread_t is a pointer or scalar type, and use the appropriate CRYPTO_THREADID_set macro based on the result.
author Benjamin Barenblat <bbaren at mit.edu>
date Sun, 20 Sep 2015 17:46:07 -0400
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