summaryrefslogtreecommitdiff
path: root/fpcdocs/crtex/ex15.pp
blob: bd48acfc744aebcc9bc130a8afa5c7a741b1a4ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Program Example15;
uses Crt;

{ Program to demonstrate the Delay function. }
var
  i : longint;
begin
  WriteLn('Counting Down');
  for i:=10 downto 1 do
   begin
     WriteLn(i);
     Delay(1000); {Wait one second}
   end;
  WriteLn('BOOM!!!');
end.