
In the editor, you see the grey text next to the lines of code: On the stepping toolbar of the Debugger tab, click the button, to move to the next breakpoint. It means that the line with the breakpoint is not yet executed. Then the debugger suspends the program at the first breakpoint. The debugger starts, shows the Console tab of the Debug tool window, and lets you enter the desired values:īy the way, in the Debug Console, you can enter the Python commands:


Let's choose one: click in the gutter, and then select the command Debug 'Solver' in the popup menu that opens: IntelliJ IDEA allows starting the debugger session in several ways. OK now, as we've added breakpoints, everything is ready for debugging. Refer to the section Breakpoints for details. To place breakpoints, just click the gutter next to the line you want your application to suspend at: It means that execution will begin with it, let you enter the desired values of the variables a, b and c, and then enter the method demo.

As you see, there is the main clause here.
