pascal repetition

// Using a for loop to repeat a statement 5 times
program RepeatExample;
var
  i: integer;
begin
  for i := 1 to 5 do
  begin
    // Replace this comment with the statement to be repeated
    // Example: writeln('Hello, world!');
  end;
end.