2014-08-24 19:58:48 -07:00
|
|
|
import logic
|
2014-09-03 16:00:38 -07:00
|
|
|
open tactic
|
2014-06-29 19:41:54 -07:00
|
|
|
|
2014-07-22 09:43:18 -07:00
|
|
|
theorem tst {A B : Prop} (H1 : A) (H2 : B) : ((fun x : Prop, x) A) ∧ B ∧ A
|
2014-09-04 16:36:06 -07:00
|
|
|
:= by apply and.intro; beta; assumption; apply and.intro; !assumption
|