views:

54

answers:

1

In many scheme/lisp dialects, when an error occurs, a "recursive repl" is popped up ... one can execute scheme/lisp code at the frame where the error occured, and go up/down the stack.

Is it possible to do something similar to this in lua?

Thanks!

+3  A: 

See debug.debug.

lhf