mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 06:19:32 +02:00
11 lines
88 B
ObjectPascal
11 lines
88 B
ObjectPascal
var
|
|
i : longint;
|
|
|
|
begin
|
|
i:=1;
|
|
repeat
|
|
continue;
|
|
until i=1;
|
|
end.
|
|
|