So I’m used to the python framework where I create a folder and in there I have several scripts that all do several simple things. So I would expect that I could do something like this in Julia. Like
simple_modules.jl
simple_functions.jl
not_that_simple_functions.jl
And then have one main.jl that call all of them.
The way that I was doing it right now was just to do
So I’m not creating a Project.toml
I tried to look into some other files projects in github and it seems that they use include more than using?
I don’t really see why should I use include or using in this context. Also not sure if when creating a project I should include this little .jl in the Project.toml even though this files are part of the developing project.
I’ve read the guidance of Pkg.jl and the simple case that I’m writing here is not at all cover.