RosettaCodeData/Task/Loops-For-with-a-specified-step/Aime/loops-for-with-a-specified-step.aime
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

9 lines
86 B
Text

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