2015-10-13 18:35:16 -07:00
|
|
|
import data.nat
|
2015-06-05 08:41:46 -07:00
|
|
|
open nat
|
|
|
|
|
|
|
|
variables {a : nat}
|
|
|
|
|
2015-10-13 18:35:16 -07:00
|
|
|
abbreviation b : num := 2
|
2015-06-05 08:41:46 -07:00
|
|
|
|
2015-10-13 18:35:16 -07:00
|
|
|
check (λ x, x) a + of_num b = 10
|
2015-06-05 08:41:46 -07:00
|
|
|
set_option pp.all true
|
2015-10-13 18:35:16 -07:00
|
|
|
check (λ x, x) a + of_num b = 10
|