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