I think it's really basic stuff, but I would like to have a "functions"
directory and a "workspace" directory. In "workspace" I would have
"file.jl" that says
include("../functions/some_functions.jl")
but this seems to be doing something similar to importing a module because
it takes very long and I get the
INFO: Loading help data...
message. It works the way I want ir if "functions" is located under
"workspace", but this seems unpractical since I want to be able to create a
"workspace2" directory and still have access to the same files.
What am I not getting of how include() is supposed to work?