12 lines
212 B
Text
12 lines
212 B
Text
|
import logic
|
||
|
|
||
|
theorem tst1 (a b c : Prop) : a → b → a ∧ b :=
|
||
|
begin
|
||
|
intros,
|
||
|
apply and.intro,
|
||
|
assumption
|
||
|
end
|
||
|
|
||
|
theorem tst2 (a b c : Prop) : a → b → a ∧ b :=
|
||
|
by intros; apply and.intro; assumption
|