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

7 lines
124 B
Text

i :INT;
loop
i := for!(1, 50, 2);
-- OR
-- i := 1.stepto!(50, 2);
#OUT + i + "\n";
end;