RosettaCodeData/Task/Loops-For/Lingo/loops-for.lingo
2016-12-05 23:44:36 +01: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