Debugging by starting a REPL at a breakpoint is fun
Hello! I was talking to a Python programmer friend yesterday about debugging, and I mentioned that I really like debugging using a REPL. He said he’d never tried it and that it sounded fun, so I thought I’d write a quick post about it.
This debugging method doesn’t work in a lot of languages, but it does work in Python and Ruby and kiiiiiind of in C (via gdb).
Source: Debugging by starting a REPL at a breakpoint is fun, an article by Julia Evans.