5 lines
74 B
ObjectPascal
5 lines
74 B
ObjectPascal
var i: integer;
|
|
begin
|
|
for var i:=1 to 10 do // Error!
|
|
Print(i)
|
|
end;
|