You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if constants such as LUA_LOADED_TABLE were available, instead of having to rely on LUA_LOADED_TABLE always being equal to "_LOADED". I think the following excerpt from the Lua reference manual is a good argument for this change:
Lua versions can always change the C API in ways that do not imply source-code changes in a program, such as the numeric values for constants or the implementation of functions as macros.
And besides, I think everyone can agree that lua.loaded_table looks nicer than "_LOADED". :-)
The text was updated successfully, but these errors were encountered:
It would be nice if constants such as
LUA_LOADED_TABLE
were available, instead of having to rely onLUA_LOADED_TABLE
always being equal to"_LOADED"
. I think the following excerpt from the Lua reference manual is a good argument for this change:And besides, I think everyone can agree that
lua.loaded_table
looks nicer than"_LOADED"
. :-)The text was updated successfully, but these errors were encountered: