Before you suggest Debugger.jl: With Julia's Debugger.jl - How can I enter debug mode similar to Python's pdb.set_trace() or ipdb.set_trace()?
It does NOT work in the global scope. The @bp macro seems to only work inside a function, else it does nothing.
In Python, you can place import pdb; pdb.set_trace() anywhere and it brings up a debugger. What is the equivalent in Julia?