view demo/list.urs @ 1598:cdca9691434a

Merge
author Ron de Bruijn <rmbruijn@gmail.com>
date Thu, 17 Nov 2011 17:19:10 +0100
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