in reply to Re: Favourite GUI Debuggers
in thread Favourite GUI Debuggers

Amen brother. For interpreted languages like perl, there is no need for a debugger (if you need one, you should really go back and learn the basics of the language).

Replies are listed 'Best First'.
Re: Re: Re: Favourite GUI Debuggers
by podian (Scribe) on Jan 19, 2004 at 22:25 UTC
    Even though perl allows you to enter print statements quickly, there are plenty of situations where a debugger will help. One example is

    Say after a long processing (e.g. after reading 1000 lines), you notice that something is wrong (e.g. a variable has invalid data).

    Wouldn't it be nice if I can stop at that point and inspect all the variables? I do not need a GUI debugger, but I find debuggers to be very useful (-d option in perl).

    If debuggers allow conditional break points, you can even break after reading every 10 lines (or when a variable has value X).