Debugger: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(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...")
 
No edit summary
Line 1: Line 1:
DEBUGGER
Debugger


'''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 Tutorial 10, “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 15: Line 15:
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
Line 21: Line 21:
(the program will stop, highlighting the Debugger statement in the Console)
(the program will stop, highlighting the Debugger statement in the Console)
</pre>
</pre>
[[Category:Language Reference]]

Revision as of 20:51, 8 August 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 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)