RosettaCodeData/Task/Loops-For-with-a-specified-step/Aime/loops-for-with-a-specified-step.aime
2023-07-01 13:44:08 -04:00

9 lines
86 B
Text

integer i;
i = 0;
while (i < 10) {
o_winteger(2, i);
i += 2;
}
o_newline();