lazarus/debugger/test/examples/testcntr.pp
vincents a0311c2cba removed cvs logs
git-svn-id: trunk@7541 -
2005-08-22 12:30:03 +00:00

31 lines
427 B
ObjectPascal

program testcntr;
{$mode objfpc}{$H+}
uses
TestWait,
SysUtils;
var
m, n, x : Cardinal;
w: TWait;
S: String;
begin
m :=0;
x := 0;
w := TWait.Create(2);
while x < 3 do
begin
repeat
S := Format('[%.10d] ', [m]);
Write(S);
Inc(m);
for n := 0 to 79 do
begin
Write('*');
end;
WriteLN;
until m mod 10 = 0;
W.Wait(10);
inc(x);
end;
end.