Debugging a Program Unit BACK | 1 2 3 4 5 6 | NEXT | MAIN
Breakpoints suspend execution of a compiled program unit, allowing you to step through code and troubleshoot runtime errors. You can also set conditional breakpoints called debug triggers.

Double-click on an executable line in the source pane to set a breakpoint.


Run the program unit by typing its name and any required arguments at the command line prompt.

Execution of the program unit is suspended at the line just prior to the breakpoint.