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
module Module
const CONST = 1 # not exported
end
using Module
# CONST is not global here, right?
# only Module.CONST would get at it, right?