Creating modules in Julia v0.7-alpha

It actually not related to the version. When you create a module in current scope, you need to load it as a local module:

module Foo
end

using .Foo

or just use its full path

using Main.Foo