lean4-htt/tests/lean/run/export.lean
2017-03-09 18:41:19 -08:00

11 lines
136 B
Text

constants a b : nat
namespace boo
export nat (rec add)
#check a + b
#check nat.add
end boo
open boo
#check a + b
#check nat.rec