On 1/17/26 09:00, João Pedro Gusatti wrote:
> global = 1
> print(global) --> 1
>
> The interpreter treats global as a normal variable name in this
> context, even though the manual states it is reserved.
This is a backward compatibility feature. Before compiling, I went to
luaconf.h and commented out LUA_COMPAT_GLOBAL, so for me, `global = 1`
does throw an error.
Luther