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

7 lines
92 B
Text

for i in [1..5]
s = "";
for j in [1..i]
s += "*";
endfor
player:tell(s);
endfor