e51c4ad2e9
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
12 lines
234 B
Text
12 lines
234 B
Text
import logic
|
|
open 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
|