e1d909455c
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
12 lines
No EOL
217 B
Text
12 lines
No EOL
217 B
Text
import standard
|
|
using tactic
|
|
variables a b c d : Bool
|
|
axiom Ha : a
|
|
axiom Hb : b
|
|
axiom Hc : c
|
|
print raw
|
|
have H1 : a, by exact,
|
|
then have H2 : b, by exact,
|
|
have H3 : c, by exact,
|
|
then have H4 : d, by exact,
|
|
H4 |