RosettaCodeData/Task/Loops-N-plus-one-half/GAP/loops-n-plus-one-half.gap
2014-01-17 05:34:36 +00:00

9 lines
125 B
Text

n := 10;
for i in [1 .. n] do
Print(i);
if i < n then
Print(", ");
else
Print("\n");
fi;
od;