@@ -19,15 +19,15 @@ Once the breakpoints are set, the debugger can be run by selecting whatever it i
### Using the Debugger
Now that we have run the debugger and stopped at the breakpoint, a lot of information is given in the Debug window.
#### Variables and Values
#### * Variables and Values
The primary benefit to using the debugger is being able to see every variable and its currently assigned value. These are displayed in the main window. As the program is stepped through, these values will update, allowing the user to easily see when a value is assigned incorrectly.
#### Step Over
#### * Step Over
If you would like to skip over a function, use the Step Over button. This causes the debugger to run until the function is returned from, at which point it will pause again, giving control back to the user.
#### Step Into
#### * Step Into
If you would like to view the internals of a function, you use the Step Into button. In this case, the user remains in control and see exactly how a function uses/modifies the data that it is given.
#### Step Out
#### * Step Out
If you have determined that you have gone too many functions deep, you can quickly return to the line that called the function you are currently in by using the Step Out button.
#### Resume Program
#### * Resume Program
If you would relinquish control to the computer, simply press the Resume Program button, and everything will be run as usual.