2013-12-30 13:35:37 -08:00
|
|
|
Import int.
|
2013-10-29 16:30:03 -07: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-18 21:18:45 -08:00
|
|
|
SetOption pp::implicit true
|
2013-10-29 16:30:03 -07:00
|
|
|
Check l = nil.
|