Reputation: 15
Is there a way of using some type of debug to execute the Lua code step-by-step? Using only Lua commands or applications written in Lua?
Upvotes: 1
Views: 3236
Reputation: 39380
ZeroBrane is written in Lua, and it has rather nice debugging facilities.
I don't get how "being written in Lua" has to do anything about it, though.
Upvotes: 2
Reputation: 72312
There is a built-in bare-bones command-line debugger debug.debug()
.
See also the debug interface.
Upvotes: 3