lean4-htt/tests/lean/run/tactic_notation.lean
2016-06-10 18:29:41 -07:00

12 lines
231 B
Text

exit
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