Another possible solution to the global scope debacle

module Module
    const CONST = 1 # not exported
end

using Module
# CONST is not global here, right?
# only Module.CONST would get at it, right?
1 Like