Error Handling
06/29/21 09:04 Filed in: Lua
The last few posts have been about debugging in Lua. Today, I want to see how to handle errors in Lua code. Read More…
Debugger.lua
06/01/21 07:30 Filed in: Lua
I've spent a fair amount of time looking at the debug library in Lua. It's too much work to write my own debugger using it. (I'd have to debug the debugger.) There is an alternate solution that someone created known as debugger.lua.
Read More…
Read More…
More on Debugging
05/18/21 07:33 Filed in: Lua
Last time I started looking into how to debug Lua code and discovered it's really a form of introspection and doesn't feel, to me, like true debugging. Today, I'll continue looking at this capability. Read More…
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…