summaryrefslogtreecommitdiff
path: root/fpcdocs/videoex/ex1.pp
blob: c8c6844573ffa939d7fb03394a9afce3b9c452c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.