What is the difference between the Step Into, Step Over and Step Out debugging tools?
Step Into runs the code one statement at a time, advances to the next
statement and enters break mode.
Step Over executes a called procedure while Step Into enters break mode after
calling the procedure.
Step Out moves past the remainder of the code in the current procedure.