currently I use
include(“.ProgramConstants.jl”)
import .ProgramConstantsModule
println(ProgramConstantsModule.BATCH_DIM)
to access the BATCH_DIM variable (which is a variable in the ProgramConstants.jl file), but is there any way that instead of using ProgramConstantsModule.BATCH_DIM I only use BATCH_DIM?
Thanks