Debugger

From NSB App Studio
Revision as of 03:03, 4 July 2012 by Brendon (talk | contribs) (Created page with "DEBUGGER '''Description''' DEBUGGER causes execution to stop if the debug Console is open in the desktop Chrome browser. Call stacks, contents of variables and other informa...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

DEBUGGER

Description

DEBUGGER causes execution to stop if the debug Console is open in the desktop Chrome browser. Call stacks, contents of variables and other information can then be checked. For more information, see Tutorial 10, “Using the Chrome Debugger”.

Example

REM DEBUGGER Example
For i=1 to 10
  Print i
  Debugger
Next

Output

1
(the program will stop, highlighting the Debugger statement in the Console)