mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-25 14:41:04 +01: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.
|