February 2021
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…
Meta Tables
02/16/21 08:23 Filed in: Lua
Today, I want to learn about Lua meta tables, what they are and how to use them.
Read More…
Read More…
Iterating Tables & Closures
02/09/21 08:09 Filed in: Lua
Last time I learned about tables, the only real data structure in Lua. I'm going to cover a few more items related to them.
Read More…
Read More…
Tables
02/02/21 08:16 Filed in: Lua
Today, I dive into something Lua calls a "table". This is a data structure, but I doubt it's a table in the SQL database definition.
Read More…
Read More…