I'm using padre for Perl debugging. Here I've set break point. After set break point, I try to move one by one. But I don't know how to know the variable value at the break point .
How to do that ?
and
What is the Best tool for Perl ?
I'm using padre for Perl debugging. Here I've set break point. After set break point, I try to move one by one. But I don't know how to know the variable value at the break point .
How to do that ?
and
What is the Best tool for Perl ?
Copyright © 2021 Jogjafile Inc.
For debugging a Perl code, use
perl -d myscript.pl
For documentation, read here.
OR
Use
use re qw(debug);
package directly.Check its documentation here.