in reply to Debugging My Perl

In Unix or Linux:
 perl my_program | more
or
 perl my code | less

I haven't needed to do development in a windows environment, so I don't know what the cognate is.

In both environments:
 perl -d my_program

----
I Go Back to Sleep, Now.

OGB

Replies are listed 'Best First'.
Re^2: Debugging My Perl
by sintadil (Pilgrim) on Sep 06, 2004 at 11:00 UTC

    perl my_program | more

    This, surprisingly, works on Win32 (and DOS!) systems. Very good guess. :)