mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 00:23:44 +02:00
9 lines
154 B
ObjectPascal
9 lines
154 B
ObjectPascal
Program Example7;
|
|
uses Crt;
|
|
|
|
{ Program to demonstrate the WhereX and WhereY functions. }
|
|
|
|
begin
|
|
Writeln('Cursor postion: X=',WhereX,' Y=',WhereY);
|
|
end.
|