;
READ -- Executes a file of DEBUG commands. R is the legal abbreviation for
READ. For example, suppose you store the following three commands
in a file named debugging_my_prog:
PRINT r
BREAKPOINT rout3\
GO
To invoke these commands simply enter the following command:
> READ debugging_my_prog
PRINT r (DEBUG echoes the first command here...
10388142
BREAKPOINT rout3\ ( the second command here...
GO ( and the third command here.)
Break at: TEST\rout3\10