2014-07-04 01:30:28 -07:00
|
|
|
import standard
|
|
|
|
using tactic
|
|
|
|
|
2014-07-22 09:43:18 -07:00
|
|
|
theorem T (a b c d : Prop) (Ha : a) (Hb : b) (Hc : c) (Hd : d) : a ∧ b ∧ c ∧ d
|
2014-07-04 10:10:05 -07:00
|
|
|
:= by fixpoint (λ f, [apply @and_intro; f | assumption; f | id])
|