RosettaCodeData/Task/Loops-N-plus-one-half/GAP/loops-n-plus-one-half.gap
2023-07-01 13:44:08 -04: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;