Debug()

Enables simple procedure call debugging

DEBUG/ON   Enable debugging of procedure calls
DEBUG/OFF   Switch off debugging messages

example:

	# Switch debugging on for next statement
	>> DEBUG/ON
	>> printn "HI"
	0:PRINTN
	hi

Debug

This procedure switches on rudimentary procedure debugging. For each procedure that is called, a line giving the name of each procedure is printed on the screen. The level to which this line is indented shows how far down in the program the procedure is called. Although not ideal, this can give you a good idea of which procedure has caused an error message.