I want to create a package with some functions for personal use only.
Currently what I’m using a .jl file inside my project folder and calling include("PersonalFunctions.jl") at the begging of my code.
I would like to use import PersonalFunctions and use it in any project. How can I do it?