mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-04 15:24:26 +02:00
14 lines
246 B
ObjectPascal
14 lines
246 B
ObjectPascal
Program Example9;
|
|
uses Crt;
|
|
|
|
{ Program to demonstrate the ClrEol function. }
|
|
|
|
begin
|
|
Write('This line will be cleared from the',
|
|
' cursor postion until the right of the screen');
|
|
GotoXY(27,WhereY);
|
|
ReadKey;
|
|
ClrEol;
|
|
WriteLn;
|
|
end.
|