This commit also replaces the notation for divides
`(` a `|` b `)`
with
a `∣` b
The character `∣` is entered by typing \|
closes #516
9 lines
193 B
Text
9 lines
193 B
Text
import logic
|
|
open tactic
|
|
|
|
theorem tst {A B : Prop} (H1 : A) (H2 : B) : A
|
|
:= by (trace "first"; state; now |
|
|
trace "second"; state; fail |
|
|
trace "third"; assumption)
|
|
|
|
check tst
|