2015-08-13 01:37:33 +00:00
|
|
|
import data.nat
|
2015-04-29 23:17:33 +00:00
|
|
|
open nat
|
|
|
|
|
|
|
|
print pp.max_depth
|
|
|
|
print +
|
|
|
|
print -
|
|
|
|
|
|
|
|
print nat
|
|
|
|
print nat.zero
|
|
|
|
print nat.add
|
|
|
|
print nat.rec
|
2015-08-13 01:37:33 +00:00
|
|
|
print classical.em
|
2015-04-29 23:17:33 +00:00
|
|
|
print quot.lift
|
|
|
|
print nat.of_num
|
|
|
|
print nat.add.assoc
|
|
|
|
|
|
|
|
section
|
|
|
|
parameter {A : Type}
|
|
|
|
variable {a : A}
|
|
|
|
|
|
|
|
print A
|
|
|
|
print a
|
|
|
|
end
|