RosettaCodeData/Task/Loops-For-with-a-specified-step/Simula/loops-for-with-a-specified-step.simula

5 lines
70 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
begin
integer i;
for i:=5 step 5 until 25 do outint(i, 5)
end