mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00
13 lines
181 B
ObjectPascal
13 lines
181 B
ObjectPascal
{ Old file: tbs0162.pp }
|
|
{ continue in repeat ... until loop doesn't work correct OK 0.99.8 (PFV) }
|
|
|
|
var
|
|
i : longint;
|
|
|
|
begin
|
|
i:=1;
|
|
repeat
|
|
continue;
|
|
until i=1;
|
|
end.
|