RosettaCodeData/Task/Loops-For-with-a-specified-step/GAP/loops-for-with-a-specified-step.gap
2014-01-17 05:34:36 +00:00

10 lines
63 B
Text

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