8743394627
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
9 lines
189 B
Text
9 lines
189 B
Text
definition Prop [inline] : Type.{1} := Type.{0}
|
|
|
|
inductive or (A B : Prop) : Prop :=
|
|
or_intro_left : A → or A B,
|
|
or_intro_right : B → or A B
|
|
|
|
check or
|
|
check or_intro_left
|
|
check or.rec
|