I have a module I wrote here:
# Hello.jl module Hello function foo return 1 end end
and
# Main.jl using Hel
You should include("./Hello.jl") before using Hello
include("./Hello.jl")
using Hello