Changes between Version 2 and Version 3 of ControlSystems/SoftwareTeam/Training/GettingStarted/Debugger
- Timestamp:
- Nov 4, 2019, 3:09:07 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/Training/GettingStarted/Debugger
v2 v3 1 1 Microsoft VSCode includes a powerful tool called a debugger. A debugger lets you control the execution of your program and examine it while it's running. 2 2 3 With the [wiki:ControlSystems/SoftwareTeam/Training/GettingStarted/Variables !VariablesExample.java] program from the last lesson open in the editor click to the left of the line number (7) for the line a=3; and a red dot will appear called a breakpoint.3 With the [wiki:ControlSystems/SoftwareTeam/Training/GettingStarted/Variables VariablesExample.java] program from the last lesson open in the editor click to the left of the line number (7) for the line a=3; and a red dot will appear called a breakpoint. 4 4 [[Image(breakpoint.jpg, 50%, margin=10)]] 5 5 1. Click Debug->Start Debugging