RosettaCodeData/Task/Loops-Continue/MOO/loops-continue.moo
2023-07-01 13:44:08 -04:00

10 lines
134 B
Text

s = "";
for i in [1..10]
s += tostr(i);
if (i % 5 == 0)
player:tell(s);
s = "";
continue;
endif
s += ", ";
endfor