view demo/list.urs @ 1757:b6c4b3484752

In incremental elaboration, handle invalidated FFI signatures
author Adam Chlipala <adam@chlipala.net>
date Wed, 09 May 2012 08:53:10 -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