5 lines
122 B
Text
5 lines
122 B
Text
example (p q : Prop) (h : p) : q ∨ p :=
|
||
by simp [h]
|
||
|
||
example (p q : Prop) : p → q ∨ p :=
|
||
by simp {contextual := tt}
|