lazarus/debugger/test/examples/testcntr.pp
lazarus d0f37eeaf7 MWE:
* More delphi compatibility added/updated to TListView
  * Introduced TDebugger.locals
  * Moved breakpoints dialog to debugger dir
  * Changed breakpoints dialog to read from resource

git-svn-id: trunk@1508 -
2002-03-12 23:55:37 +00:00

28 lines
398 B
ObjectPascal

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