annotate tests/recBad.ur @ 1762:a6eab6820b37

Lance Hepler's fix to configure.ac; small refactor of fastcgi.c to avoid undefined behavior
author Adam Chlipala <adam@chlipala.net>
date Sun, 13 May 2012 17:41:21 -0400
parents 71bafe66dbe1
children
rev   line source
adamc@238 1 datatype list a = Nil | Cons of a * list a
adamc@238 2
adamc@242 3 fun append (t ::: Type) (ls1 : list t) (ls2 : list t) : list t =
adamc@238 4 case ls1 of
adamc@238 5 Nil => ls2
adamc@238 6 | Cons (h, t) => Cons (h, append t ls2)
adamc@238 7
adamc@238 8 (*val rec ones : list int = Cons (1, ones)*)
adamc@239 9 val rec ones = fn () => Cons (1, ones ())