lean2/tests/lean/tactic6.lean
Leonardo de Moura 57c0006916 chore(*): cleanup lean builtin symbols, replace :: with _
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-09 08:33:52 -08:00

18 lines
No EOL
523 B
Text

(* import("tactic.lua") *)
theorem T (a b c : Bool): a → b /\ c → c /\ a /\ b := _.
conj_hyp
apply and_intro
(* Focus(Then(show_tac(), conj_tac(), show_tac(), assumption_tac()), 2) *)
exact
done
theorem T2 (a b c : Bool): a → b /\ c → c /\ a /\ b := _.
conj_hyp
apply and_intro
(* show_tac() *)
(* Focus(Then(show_tac(), conj_tac(), Focus(assumption_tac(), 1)), 2) *)
(* show_tac() *)
(* Focus(assumption_tac(), 1) *)
(* show_tac() *)
(* Focus(assumption_tac(), 1) *)
done