Are there other ways for debugging Perl programs apart from Data::Dumper
and perl -d
?
There are several tools available in Perl for debugging and similar tasks.
Built-in command line debugger.
perl -d yourcode.pl
Perl/Tk based graphical debugger by Andrew E. Page.
This a free tool running both on Linux and Windows written in Lisp. Source code is not available.
The Perl Regex debugger and an article about it written by Mark Jason Dominus.