Debugger: Difference between revisions
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
== Description == | == 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 | 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 [[Using the Chrome Debugger]]. | ||
== Example == | == Example == |
Revision as of 12:53, 19 December 2012
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 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)