I am at the point where I feel comfortable using the language and now have a project that will be broken up over several modules. I have had trouble adding my own module though. I followed what was written here: https://en.wikibooks.org/wiki/Introducing_Julia/Modules_and_packages
I have a projects directory and under it are (simplified):
/projects
/module1.jl
/src
module1.jl
/module2.jl
/src
module2.jl
for each module directory I did git init.
I did push!(LOAD_PATH, “/projects”)
Pkg.add(“module1.jl”) however produces ERROR: unknown package VGTRNG
Have I missed a step or done a step incorrectly? Neither module has a /tests directory yet. Is that an issue? Am I misunderstanding where Pkg.add() will look for packages and I need to do something else to add local packages? Do I need to modify the .git/description?