How to know break point value in Padre?

290 Views Asked by At

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 ?

1

There are 1 best solutions below

0
On

For debugging a Perl code, use perl -d myscript.pl

b LINE_NUMBER for break-point.

c to continue.

n to skip internals of subroutine.

s to enter into subroutine and debug each line of the subroutine.

For documentation, read here.

OR

Use use re qw(debug); package directly.

Check its documentation here.