lean2/tests/lean/run/have5.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

11 lines
No EOL
220 B
Text

import standard
variables a b c d : Bool
axiom Ha : a
axiom Hb : b
axiom Hc : c
print raw
have H1 : a, by exact_tac,
then have H2 : b, by exact_tac,
have H3 : c, by exact_tac,
then have H4 : d, by exact_tac,
H4