global table
Lua Modules
04/13/21 08:47 Filed in: Lua
Lua modules are reusable code. The interesting thing about Lua modules is that like every other thing in the language a module is a Lua table. Today I create and use my own simple module. Read More…
The Global Table, _G
03/09/21 09:02 Filed in: Lua
Everything in Lua is a table, including variables. Variables that you don't explicitly label as local, are placed into a table known as _G. Today, I learn a bit about how to work with it.
Read More…
Read More…