Original Author Paul Laughton, 2011
Page 93
De Re BASIC!
Echo.on
Same as Debug.echo.on.
Debug.echo.off
Turns off the Echo mode.
Echo.off
Same as Debug.echo.off.
Debug.print
This command is exactly the same as the Print command except that the print will occur only while in
the debug mode.
Debug.dump.scalars
Prints a list of all the Scalar variable names and values. Scalar variables are the variable names that are
not Arrays or Functions. Among other things, this command will help expose misspelled variable names.
Debug.dump.array Array[]
Dumps the contents of the specified array. If the array is multidimensional the entire array will be
dumped in a linear fashion.
Debug.dump.bundle <bundlePtr_nexp>
Dumps the Bundle pointed to by the Bundle Pointer numeric expression.
Debug.dump.list <listPtr_nexp>
Dumps the List pointed to by the List Pointer numeric expression.
Debug.dump.stack <stackPtr_nexp>
Dumps the Stack pointed to by the Stack Pointer numeric expression.
Debug.show.scalars
Pauses the execution of the program and displays a dialog box. The dialog box prints a list of all the
Scalar variable names and values, the line number of the program line just executed and the text of that
line. Scalar variables are the variable names that are not Arrays or Functions. Among other things, this
command will help expose misspelled variable names.
For a description of the dialog box controls, see the Debug.show command, below.