- Run something like
(tmp_jl2) pkg> dev /Users/Josh/IC_repos/basic_julia_package/basics- To make it track live changes (same as
python setup.py develop) always runusing Revisefirst
- Only the main file is imported, here,
basics.jl. This must include everything- All methods identified here can be accessed with
using basics; basics.greet() - To access without the
., a method must be exported inbasics.jl, e.g.export squarer
- All methods identified here can be accessed with
- Submodules, other files can be defined as modules, included in
basics.jland then the module can be exportedexport bye*