view tests/caseMod.ur @ 1905:cd1cfecc8c72

Remove autogenerated config.h.in from version control Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- .hgignore | 1 + include/urweb/config.h.in | 104 ---------------------------------------------- 2 files changed, 1 insertion(+), 104 deletions(-) delete mode 100644 include/urweb/config.h.in
author Anders Kaseorg <andersk@mit.edu>
date Fri, 22 Nov 2013 09:36:14 -0500
parents 71bafe66dbe1
children
line wrap: on
line source
structure M = struct
        datatype t = A | B
end

val f = fn x : M.t => case x of M.A => M.B | M.B => M.A

datatype t = datatype M.t

val g = fn x : t => case x of M.A => B | B => M.A

structure N = struct
        datatype u = C of t | D
end

val h = fn x : N.u => case x of N.C x => x | N.D => M.A

datatype u = datatype N.u

val i = fn x : u => case x of N.C x => x | D => M.A

val toString = fn x =>
        case x of
            C A => "C A"
          | C B => "C B"
          | D => "D"

val rec page = fn x => <html><body>
        {cdata (toString x)}<br/>
        <br/>

        <a link={page x}>Again!</a>
</body></html>

val main : unit -> page = fn () => <html><body>
        <li> <a link={page (C A)}>C A</a></li>
        <li> <a link={page (C B)}>C B</a></li>
        <li> <a link={page D}>D</a></li>
</body></html>