lean2/tests/lean/run/tactic11.lean
Leonardo de Moura b2b76b078f feat(frontends/lean): remove build_tactic_cmds, and use expressions for representing tactics
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-07-01 20:43:53 -07:00

8 lines
213 B
Text

import logic
exit -- TODO
theorem tst (a b : Bool) (H : a ↔ b) : b ↔ a
:= have H1 [fact] : a → b, from iff_elim_left H,
by (apply iff_intro,
assume Hb, iff_mp_right H Hb,
assume Ha, H1 Ha)