10 lines
102 B
ObjectPascal
10 lines
102 B
ObjectPascal
|
|
label 1;
|
||
|
|
begin
|
||
|
|
goto 1;
|
||
|
|
while true do
|
||
|
|
begin
|
||
|
|
var x := 1;
|
||
|
|
1: x := 2;
|
||
|
|
break;
|
||
|
|
end;
|
||
|
|
end.
|