home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
pctchnqs
/
1990
/
number6
/
ptest.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1990-07-16
|
481b
|
22 lines
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.