Re: debug perl package

2017-07-17 Thread Илья Рассадин
Perl5 plugin for intelij IDEA has support for built-in Perl debugger. So you may consider it as a gui interface to debugger. 18.07.17 5:48, David Mertens пишет: If you really want a GUI debugger you might consider Padre. I've used it as a debugger once or twice, but recall running into issues.

Re: debug perl package

2017-07-17 Thread David Mertens
If you really want a GUI debugger you might consider Padre. I've used it as a debugger once or twice, but recall running into issues. Note that Padre has been a stale project for a while, so it may not even install. A safe bet, if non-gui, is the perl debugger, as already mentioned. David On Mon

Re: debug perl package

2017-07-17 Thread Andrew Solomon
There's also a very nice tutorial here http://techblog.net-a-porter.com/2014/03/learning-the-perl-debugger-introduction/ On Mon, Jul 17, 2017 at 8:54 PM, Chas. Owens wrote: > Perl has a built in debugger. You can say > > perl -d abc.pl > > And it will stop at the first executable line (ignoring

Re: debug perl package

2017-07-17 Thread Chas. Owens
Perl has a built in debugger. You can say perl -d abc.pl And it will stop at the first executable line (ignoring BEGIN blocks and use statements). You can then step through or over the code. See https://perldoc.perl.org/perldebug.html or perldoc perldebug for more information. On Mon, Jul 17,

debug perl package

2017-07-17 Thread Asad
Hi All , I am new to perl , I a have a abc.pl script and abc.pm module . I want to understand when I execute abc.pl hw to get to a debug state to identify what values does it take . Any GUI interface available to see the flow of events. -- Asad Hasan +91 9582111698