I often have to debug my Perl program, some of them are very large and do not run perl xxx.pl.
I have a Python pdb module that can set a breakpoint in a program using
pdb.set_trace()
When this point is executed, the program will produce an interactive python shell. Then I can debug. I want to know that in Perl there is such a module or debugging method? I also want to know other debugging support in perl and its modules.
source
share