March 2021
Using the os Libary
03/30/21 08:17 Filed in: Lua
Today, I learn a few miscellaneous things about Lua. I don't want to tackle any big topics, because my day is full.
Read More…
Read More…
Lua math & io Libraries
03/16/21 08:33 Filed in: Lua
I'm going to divert a bit and dive into the math Lua library and its functions. I want to see what is out there. I also want to learn how to work with files.
Read More…
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…
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…