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