4 lines
110 B
Text
4 lines
110 B
Text
theorem ex (p q r : Prop) (h : p ∧ q ∧ r) : (¬q ∨ r) ∧ (¬r ∨ q) ∧ p := by
|
||
simp [h]
|
||
|
||
#print ex
|