view tests/unurlify.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 ebf27030ae3b
children
line wrap: on
line source
datatype list t = Nil | Cons of t * list t

fun handler (ls : list bool) = return <xml/>

datatype wlist = WNil | Empty | WCons of bool * wlist

fun whandler' (ls : wlist) =
    case ls of
        WNil => <xml>Nil</xml>
      | Empty => <xml>Empty</xml>
      | WCons (x, ls') => <xml>{[x]} :: {whandler' ls'}</xml>

fun whandler ls = return (whandler' ls)

fun main () : transaction page = return <xml><body>
  <a link={handler Nil}>!</a><br/>
  <a link={whandler WNil}>Nil</a><br/>
  <a link={whandler Empty}>Empty</a><br/>
  <a link={whandler (WCons (True, WCons (False, Empty)))}>True :: False :: Empty</a><br/>
</body></xml>