2014-11-30 21:16:01 -08:00
|
|
|
prelude
|
2014-09-17 14:39:05 -07:00
|
|
|
definition Prop : Type.{1} := Type.{0}
|
2014-10-02 16:20:52 -07:00
|
|
|
constants a b c : Prop
|
2014-06-20 11:35:12 -07:00
|
|
|
axiom Ha : a
|
|
|
|
axiom Hb : b
|
|
|
|
axiom Hc : c
|
|
|
|
check have H1 : a, from Ha,
|
|
|
|
have H2 : a, using H1, from H1,
|
2014-09-17 14:39:05 -07:00
|
|
|
H2
|