Working with Lua Tables
In this chapter, we will continue to improve our Lua executor to work with tables. Many of the mechanisms are extensions of the learnings from the previous chapter. You will also learn about object-oriented programming (OOP) in Lua and how to call Lua object methods. In all, Lua objects are Lua tables by nature.
We will cover the following topics:
- Working with Lua table entries
- Working with Lua arrays
- OOP in Lua
- Working with Lua table functions