lean2/tests/lean/run/have5.lean
Leonardo de Moura 5eaf04518b refactor(*): rename Bool to Prop
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-07-22 09:43:18 -07:00

12 lines
No EOL
237 B
Text

import standard
using tactic
variables a b c d : Prop
axiom Ha : a
axiom Hb : b
axiom Hc : c
print raw
have H1 : a, by assumption,
then have H2 : b, by assumption,
have H3 : c, by assumption,
then have H4 : d, by assumption,
H4