Mercurial > urweb
view tests/recBad.ur @ 1959:3cc14f1e47d1
Stop quoting Postgres identifiers in 'noMangleSql' mode
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 15 Jan 2014 15:46:46 -0500 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
datatype list a = Nil | Cons of a * list a fun append (t ::: Type) (ls1 : list t) (ls2 : list t) : list t = case ls1 of Nil => ls2 | Cons (h, t) => Cons (h, append t ls2) (*val rec ones : list int = Cons (1, ones)*) val rec ones = fn () => Cons (1, ones ())