2014-10-02 23:20:52 +00:00
|
|
|
constant A : Type.{1}
|
|
|
|
constants a b c : A
|
|
|
|
constant f : A → A → A
|
2014-06-17 15:25:00 +00:00
|
|
|
check f a b
|
2015-04-22 02:33:21 +00:00
|
|
|
section
|
2014-06-23 00:51:00 +00:00
|
|
|
parameters A B : Type
|
|
|
|
parameters {C D : Type}
|
|
|
|
parameters [e d : A]
|
2014-06-17 15:25:00 +00:00
|
|
|
check A
|
|
|
|
check B
|
|
|
|
definition g (a : A) (b : B) (c : C) : A := e
|
|
|
|
end
|
|
|
|
check g.{2 1}
|
2014-10-02 23:20:52 +00:00
|
|
|
constants x y : A
|