fpc/docs/crtex/ex8.pp
1998-03-25 11:26:49 +00:00

12 lines
205 B
ObjectPascal

Program Example8;
uses Crt;
{ Program to demonstrate the ClrScr function. }
begin
Writeln('Press any key to clear the screen');
ReadKey;
ClrScr;
Writeln('Have fun with the cleared screen');
end.