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

7 lines
115 B
Text

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