I have a module I wrote here:
# Hello.jl module Hello function foo return 1 end end
and
# Main.jl using Hel
If you want to access function foo when importing the module with "using" you need to add "export foo" in the header of the module.