Debugging Statements: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
(Redirected page to Category:Debugging Statements)
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
#REDIRECT[[:Category:Debugging Statements]]
;[[Pause]] (PAU)
Interrupts program execution and allows the operator to enter system commands, print variables, change variables, and edit program lines, then resume execution from the same line or a different line. (Type any form of the [[Go]] command to restart execution.)
 
;[[Break]]
Causes the program to go into Step mode when a variable value changes, or the specified line number is encountered.
 
<noinclude>
[[Category:Summary of Statements]]
</noinclude>

Latest revision as of 01:48, 16 July 2013

Pause (PAU)

Interrupts program execution and allows the operator to enter system commands, print variables, change variables, and edit program lines, then resume execution from the same line or a different line. (Type any form of the Go command to restart execution.)

Break

Causes the program to go into Step mode when a variable value changes, or the specified line number is encountered.