annotate tests/mutual.ur @ 1907:cb57ba73a61d

make uninstall: Uninstall types_cpp.h, urweb_cpp.h Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
author Anders Kaseorg <andersk@mit.edu>
date Fri, 22 Nov 2013 09:36:14 -0500
parents 61a1f5c5ae2c
children
rev   line source
adamc@805 1 datatype foo = A | B of bar
adamc@805 2 and bar = C | D of foo
adamc@807 3
adamc@807 4 val q = B (D A)
adamc@807 5
adamc@807 6 fun main () = return <xml>
adamc@807 7 {case q of
adamc@807 8 B (D A) => <xml>Good</xml>
adamc@807 9 | _ => <xml>Bad</xml>}
adamc@807 10 </xml>