I have a module I wrote here:
# Hello.jl module Hello function foo return 1 end end
and
# Main.jl using Hel
Unless you explicitly load the file (include("./Hello.jl")) Julia looks for module files in directories defined in the LOAD_PATH variable.
include("./Hello.jl")
See this page.