Use of `global` in a module for global variable is pointless?

A quick query about the use of global in a module.

module MyModule

global gTest = nothing

end
module MyModule

gTest = nothing

end

I think these two codes are exactly identical with no difference between them. Is that correct?

Yes.

2 Likes