9 lines
109 B
Text
9 lines
109 B
Text
variable {A : Type}
|
|
|
|
#check @id
|
|
|
|
inductive List
|
|
| nil : List
|
|
| cons : A → List → List
|
|
|
|
#check @List.cons
|