Object Inheritance
03/02/21 08:15 Filed in: Lua
Last time I started investigating OOP in Lua and learned how to create objects, instances, and methods using tables and metatables. Today, I want to find how to handle inheritance in Lua.
Read More…
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…