home *** CD-ROM | disk | FTP | other *** search
- PROGRAM Ptest;
-
- USES
- { Turbo Power Unit }
- OpCrt,
- { Dg Unit }
- Polite;
-
- BEGIN
- OpenProgram;
- WriteLn ('This is a test of the polite unit.');
- WriteLn ('Notice that the cursor has been turned off.');
- WriteLn
- ('It will automatically be restored when the program exits.');
- WriteLn;
- WriteLn ('Enter ''PTEST/bw'' and I will display in mono.');
- WriteLn ('Press any key to exit.');
- Repeat until keypressed;
- WriteLn (ReadKey);
- CloseProgram;
- END.