Use Step Into to move through the code from the breakpoint halt. Stepping allows you to examine changes in variable values or determine if the program flow is correct.
![]() |
Step Over – Executes one source line of a program. If the line is a function call, it executes the entire function and stops. |
![]() |
Step Into – Executes one source line of a program. If the line is a function call, it executes the program up to the function’s first statement and stops. |
![]() |
Step Out – Executes one source line of a program. If the line is a function call, it executes the functions and returns control to the caller. |
![]() |
Run to Cursor – Runs the current project to the cursor’s location in the file and stops program execution. |