23 lines
263 B
Text
23 lines
263 B
Text
import data.nat
|
|
open nat
|
|
|
|
print pp.max_depth
|
|
print +
|
|
print -
|
|
|
|
print nat
|
|
print nat.zero
|
|
print nat.add
|
|
print nat.rec
|
|
print classical.em
|
|
print quot.lift
|
|
print nat.of_num
|
|
print nat.add_assoc
|
|
|
|
section
|
|
parameter {A : Type}
|
|
variable {a : A}
|
|
|
|
print A
|
|
print a
|
|
end
|