2014-08-25 02:58:48 +00:00
|
|
|
import logic
|
2014-09-03 23:00:38 +00:00
|
|
|
open tactic
|
2014-07-04 08:30:28 +00:00
|
|
|
|
2014-07-22 16:43:18 +00:00
|
|
|
theorem T (a b c d : Prop) (Ha : a) (Hb : b) (Hc : c) (Hd : d) : a ∧ b ∧ c ∧ d
|
2014-07-04 17:10:05 +00:00
|
|
|
:= by fixpoint (λ f, [apply @and_intro; f | assumption; f | id])
|