objects
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…
Objects In Lua
02/23/21 08:08 Filed in: Lua
Today, I want to learn about OOP in Lua. Why OOP instead of functional programming? Because I still use OOP in many other languages and want to see how Lua handles it. Let's dive in. Read More…