mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-30 03:08:26 +02:00
18 lines
263 B
ObjectPascal
18 lines
263 B
ObjectPascal
program testvideo;
|
|
|
|
uses video,keyboard,vidutil;
|
|
|
|
Var
|
|
i : longint;
|
|
k : TkeyEvent;
|
|
|
|
begin
|
|
InitVideo;
|
|
InitKeyboard;
|
|
For I:=1 to 10 do
|
|
TextOut(i,i, 'Press any key to end');
|
|
UpdateScreen(False);
|
|
K:=GetKeyEvent;
|
|
DoneKeyBoard;
|
|
DoneVideo;
|
|
end. |