2015-08-12 18:37:33 -07:00
|
|
|
import data.nat
|
2015-04-29 16:17:33 -07:00
|
|
|
open nat
|
|
|
|
|
|
|
|
print pp.max_depth
|
|
|
|
print +
|
|
|
|
print -
|
|
|
|
|
|
|
|
print nat
|
|
|
|
print nat.zero
|
|
|
|
print nat.add
|
|
|
|
print nat.rec
|
2015-08-12 18:37:33 -07:00
|
|
|
print classical.em
|
2015-04-29 16:17:33 -07:00
|
|
|
print quot.lift
|
|
|
|
print nat.of_num
|
2015-10-14 12:27:09 -07:00
|
|
|
print nat.add_assoc
|
2015-04-29 16:17:33 -07:00
|
|
|
|
|
|
|
section
|
|
|
|
parameter {A : Type}
|
|
|
|
variable {a : A}
|
|
|
|
|
|
|
|
print A
|
|
|
|
print a
|
|
|
|
end
|