In Python, loading a module (i.e. importing a file) does not load sub-modules, eg.:
import sklearn
import sklearn.linear_model
Is there any way to achieve the same thing in Julia?
module A
println("loaded A")
module B
println("loaded B")
end
end
Can I have "loaded A" without "loaded B"?
