in reply to A convenient way to debug your code

You cannot modify the code while in the debugger. You can certainly view and change the values of any variables. And there is no debugger command to skip lines or re-execute lines. See debugger reference manual.

1 Peter 4:10
  • Comment on Re: A convenient way to debug your code

Replies are listed 'Best First'.
Re^2: A convenient way to debug your code (change code)
by tye (Sage) on Oct 21, 2014 at 17:16 UTC

    But you can augment the code by adding actions (see "h a" and "h A" when in the debugger). You can also (mostly) replace subroutines.

    - tye