user3009456
user3009456

Reputation: 15

Using Lua debug to step-by-step execute

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

Answers (2)

Bartek Banachewicz
Bartek Banachewicz

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

lhf
lhf

Reputation: 72312

There is a built-in bare-bones command-line debugger debug.debug().

See also the debug interface.

Upvotes: 3

Related Questions