dd72269b13
It is not nice to have Set as a reserved keyword. See example examples/lean/set.lean Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
5 lines
179 B
Text
5 lines
179 B
Text
Axiom PlusComm(a b : Int) : a + b == b + a.
|
|
Variable a : Int.
|
|
Check (Abst (fun x : Int, (PlusComm a x))).
|
|
SetOption pp::implicit true.
|
|
Check (Abst (fun x : Int, (PlusComm a x))).
|