lean2/tests/lean/eq2.lean

8 lines
199 B
Text
Raw Normal View History

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.
Set pp::implicit true
Check l = nil.