✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What does the following code snippet do:
var
i: integer;
begin
for i := 1 to 5 do
Memo1.Lines.Add(IntToStr(i));
end;