mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
17 lines
201 B
ObjectPascal
17 lines
201 B
ObjectPascal
program boolloop;
|
|
var
|
|
i: longint;
|
|
a, b: boolean;
|
|
begin
|
|
a:=true;
|
|
i:=0;
|
|
for b:=not a to true do
|
|
begin
|
|
inc(i);
|
|
writeln('now b is ',b);
|
|
end;
|
|
if i<>2 then
|
|
halt(1);
|
|
end.
|
|
|