2014-07-02 13:14:50 -07:00
|
|
|
import standard
|
|
|
|
using tactic
|
2014-06-29 18:26:07 -07:00
|
|
|
|
2014-07-22 09:43:18 -07:00
|
|
|
theorem tst {A B : Prop} (H1 : A) (H2 : B) : A ∧ B ∧ A
|
2014-07-02 13:14:50 -07:00
|
|
|
:= by (apply @and_intro;
|
|
|
|
apply (show A, from H1);
|
|
|
|
apply (show B ∧ A, from and_intro H2 H1))
|
|
|
|
|
2014-06-29 18:26:07 -07:00
|
|
|
check @tst
|