-
Notifications
You must be signed in to change notification settings - Fork 196
Open
Description
Hello,
Would be nice if the PS accepted the new FOR structure of Free Pascal / XE. E.g.:
var
s: string;
sl: TStringList;
begin
sl := TStringList.Create;
try
sl.Add('A');
sl.Add('B');
sl.Add('C');
for s in sl do
WriteLn(s);
finally
sl.Free;
end;
end;
Issued on: http://bugs.freepascal.org/view.php?id=24859
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels