754276a660
This commit also replaces the notation for divides `(` a `|` b `)` with a `∣` b The character `∣` is entered by typing \| closes #516
7 lines
189 B
Text
7 lines
189 B
Text
import logic
|
|
open tactic
|
|
|
|
definition my_tac := repeat (apply @and.intro | apply @eq.refl)
|
|
tactic_hint my_tac
|
|
|
|
theorem T1 {A : Type} {B : Type} (a : A) (b c : B) : a = a ∧ b = b ∧ c = c
|