21 lines
322 B
Text
21 lines
322 B
Text
|
import standard
|
||
|
section
|
||
|
parameter {A : Type}
|
||
|
theorem T {a b : A} (H : a = b) : b = a
|
||
|
:= symm H
|
||
|
variables x y : A
|
||
|
axiom H : x = y
|
||
|
check T H
|
||
|
check T
|
||
|
end
|
||
|
|
||
|
section
|
||
|
parameter {A : Type}
|
||
|
theorem T2 ⦃a b : A⦄ (H : a = b) : b = a
|
||
|
:= symm H
|
||
|
variables x y : A
|
||
|
axiom H : x = y
|
||
|
check T2 H
|
||
|
check T2
|
||
|
end
|