1 2 3 4 5 6 7 8 9 10 11
import m::f; import m::g; mod m { export f, g; fn f() { } fn g() { } } fn main() { f(); g(); m::f(); m::g(); }