Debugger: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by 3 users not shown)
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 Tutorial 10, “Using the Chrome Debugger”.
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 ==


<pre>
<pre>
REM Debugger Example
Rem Debugger Example
For i=1 to 10
For i=1 to 10
   Print i
   Print i
Line 23: Line 23:


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Statements - Debugging]]

Latest revision as of 11:04, 8 October 2013

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)