mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 10:39:29 +02:00
14 lines
182 B
ObjectPascal
14 lines
182 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.
|
|
|