RosettaCodeData/Task/Loops-For/Lingo/loops-for.lingo

8 lines
115 B
Plaintext

repeat with i = 1 to 5
str = ""
repeat with j = 1 to i
put "*" after str
end repeat
put str
end repeat