In the Source window, the debugger indicates lines of code on which you can set breakpoints with a blue dot at the start of the line.
The line pointer is set to this line, and the pop-up menu of the window appears.
Alternatively, you can set a breakpoint by double-clicking the blue dot.
A breakpoint is now set, indicated by a red stop-sign.
The application should stop at the breakpoint you set.
The line pointer is set to this line, and the pop-up menu of the window appears.
Alternatively, you can delete a breakpoint by double-clicking the stop sign.
You have deleted the breakpoint you set. The blue dot has replaced the stop-sign.
The application runs, and displays Hello World! in a shell, and the program exits.