13 lines
289 B
Text
13 lines
289 B
Text
exit
|
|
example (a b c : Prop) : a ∧ b ↔ b ∧ a :=
|
|
begin
|
|
apply iff.intro,
|
|
{intro H,
|
|
match H with
|
|
| and.intro H₁ H₂ := by apply and.intro; repeat assumption
|
|
end},
|
|
{intro H,
|
|
match H with
|
|
| and.intro H₁ H₂ := by apply and.intro; repeat assumption
|
|
end},
|
|
end
|