lean4-htt/tests/lean/run/export.lean
2016-07-31 17:45:43 -07:00

13 lines
149 B
Text

import data.nat
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