RosettaCodeData/Task/Loops-For/MOO/loops-for.moo

8 lines
92 B
Plaintext

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