Open YongHee-Kim opened 2 years ago
I've tried use include at setup, but it isn't a good style. See the discussion below
include
https://discourse.julialang.org/t/is-include-safe-to-use-inside-a-function/10867/41
Maybe push!(LOAD_PATH, "UserModulePath") from setup then asks user to do julia>using UserModule before using their custom functions?
push!(LOAD_PATH, "UserModulePath")
julia>using UserModule
I've tried use
include
at setup, but it isn't a good style. See the discussion belowhttps://discourse.julialang.org/t/is-include-safe-to-use-inside-a-function/10867/41
Maybe
push!(LOAD_PATH, "UserModulePath")
from setup then asks user to dojulia>using UserModule
before using their custom functions?