e379034b95
- It uses the unifier in "conservative" mode - It only affects the current goal closes #570
11 lines
226 B
Text
11 lines
226 B
Text
import logic
|
|
|
|
theorem tst1 (a b c : Prop) : a → b → a ∧ b :=
|
|
begin
|
|
intros,
|
|
apply and.intro,
|
|
repeat assumption
|
|
end
|
|
|
|
theorem tst2 (a b c : Prop) : a → b → a ∧ b :=
|
|
by intros; apply and.intro; repeat assumption
|