Interesting. Is this not something that can just be handled with relative using
statements?
julia>
module Foo
module Bar
f() = "hello"
end
using .Bar: f
end
julia> Foo.f()
"hello"
@rdeits True, I’ve only just discovered relative using
statements… I’ll delete the “project”. Thanks for the confirmation.