view demo/list.urs @ 1440:6064ddd90ca6

Fix C compilation of empty records; use DESTDIR in 'make install/uninstall'
author Adam Chlipala <adam@chlipala.net>
date Sun, 20 Mar 2011 13:15:11 -0400
parents 4d519baf357c
children
line wrap: on
line source
datatype list t = Nil | Cons of t * list t

val length : t ::: Type -> list t -> int

val rev : t ::: Type -> list t -> list t