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

10 lines
63 B
Text

for i in [1, 3 .. 11] do
Print(i, "\n");
od;
1
3
5
7
9
11