lean4-htt/old_tests/tests/lean/run/begin_end1.lean
2018-04-10 12:56:55 -07:00

10 lines
136 B
Text

open tactic
example (p q : Prop) : p → q → q ∧ p :=
begin
intros,
constructor,
trace_state,
assumption,
assumption
end