2014-01-05 20:05:08 +00:00
|
|
|
import Int.
|
|
|
|
axiom PlusComm(a b : Int) : a + b == b + a.
|
|
|
|
variable a : Int.
|
2014-01-09 01:25:14 +00:00
|
|
|
check (funext (fun x : Int, (PlusComm a x))).
|
2014-01-09 16:33:52 +00:00
|
|
|
set_option pp::implicit true.
|
2014-01-09 01:25:14 +00:00
|
|
|
check (funext (fun x : Int, (PlusComm a x))).
|