This code and associated variables provides a simple trace facility to help
debugging.

To use, import the file 'code' into an empty code window and the file
'variables' into the variables viewer.


There are two procedures provided.


ProcTraceTo(<Filename>)
-----------------------

This is equivalent to the TRACE TO command in BASIC

It creates a file to which debug messages will be sent

Example
=======

ProcTraceTo("ADFS::4.testfile")


ProcTrace(<string>)
--------------------

The appends the string to the file specified in ProcTraceTo

It is equivalent to BPUT#TRACE in BASIC.

Example
=======

ProcTrace("The value of a% at this point is "+str$(a$))




