There are two commands you can use to step through code when debugging:
-
n
stands for next. It allows you to move to the next logically executed line of code, ignoring function calls. This is the equivalent of step over in most debuggers. -
s
stands for step. If you’re stopped on a function call, move into that function and stop there. This is the equivalent of step into in most debuggers.
Pygator on Sept. 22, 2019
Is there any good c++ equivalent for all of these features? Thank you!! This will be very handy.