breakpoint

Click the gutter to the left of the code window to set the breakpoint at the line you click, and when it stops at the breakpoint, you can either use the 'Locals' window to look at the values of all currently-in-use variables, add a variable-watch to the 'Watch' window, or use the 'Command Window' to evalute a function or variable:

In the Command Window, if f is 5:
Code:
? f
That will print '5' underneath your life. You can execute any available function that way too.
 
Back
Top