r
Size: a a a
r
DF
AZ
AZ
AZ
DF
DF
DF
DF
AZ
DF
AZ
AZ
AZ
||| Generic lists
data List : (elem : Type) -> Type where
||| Empty list
Nil : List elem
||| A non-empty list, consisting of a head element and the rest of
||| the list.
(::) : (x : elem) -> (xs : List elem) -> List elem
AZ
AZ
DF
DF
AZ