Constants in Lua?

.@andymac3d - you probably shouldn’t use _G explicitly, sorry I should have been clearer, use your own table. Any global ends up in _G.

You can have a look at what is in there using:

for k, v in pairs(_G) do print(k, v) end