April 2021
Lua Debugging
04/27/21 07:50 Filed in: Lua
I'm using Lua in various ways. I'm playing around with an environment, Codea, and need a way to debug my code. Today, I try to find an answer that works in Lua. Read More…
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…
Closures and Injecting Source Code
04/06/21 08:25 Filed in: Lua
I needed a way to change what a Lua program does by letting a user write their own code. I spent yesterday working out how to do this. The solution comes down to closures and injecting source code. Read More…