2013-12-30 21:35:37 +00:00
|
|
|
Import int.
|
2013-10-29 23:30:03 +00:00
|
|
|
Variable List : Type -> Type
|
|
|
|
Variable nil {A : Type} : List A
|
|
|
|
Variable cons {A : Type} (head : A) (tail : List A) : List A
|
|
|
|
Variable l : List Int.
|
|
|
|
Check l = nil.
|
2013-12-19 05:18:45 +00:00
|
|
|
SetOption pp::implicit true
|
2013-10-29 23:30:03 +00:00
|
|
|
Check l = nil.
|