This repository has been archived on 2022-10-10. You can view files and clone it, but cannot push or open issues or pull requests.
2022-09-05 17:15:08 +01:00

12 lines
106 B
Plaintext

let
var a : Integer
in
begin
a := 0;
while a < 5 do
begin
put('a');
a := a + 1;
end
end