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