annotate tests/recBad.ur @ 1564:da11f7b18067

Add an URWEB_PQ_CON environment variable, which overrides the PostgreSQL connection string.
author Austin Seipp <as@hacks.yi.org>
date Fri, 23 Sep 2011 23:11:59 -0500
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 ())