Precede any R:BASE command with the DEBUG command to control the running of the command. In forms runtime, [Ctrl] + [Shift] + [F11] will toggle the DEBUG flag.
Option
command
Specifies a valid command name.
About the DEBUG Command
If DEBUG is set on, the DEBUG command runs; if it is set off, the DEBUG command is ignored. By allowing DEBUG to be set on or off, DEBUG statements in command files or applications can be activated or deactivated.
Examples
The following command lines show all variables and issue a LIST command.
SET DEBUG ON
DEBUG SHOW VAR
LIST
SET DEBUG OFF
Because DEBUG is set off, the following command sequence only issues the LIST command.
SET DEBUG OFF
DEBUG SHOW VAR
LIST