Julia custom modules how2

If we want to place a function in another file – because we want to use it from many scripts, or break up our code into manageable pieces – we can place it in a custom module. Module modulename.jl structure: module modulename1 # not required to be same as filename export function1, function2 # required to accessContinue reading “Julia custom modules how2”