mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 19:43:42 +02:00
12 lines
205 B
ObjectPascal
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.
|