RosettaCodeData/Task/Loops-For/BASIC/loops-for-12.basic

7 lines
101 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
For i = 1 TO 5
For j = 1 To i
TextWindow.Write("*")
EndFor
TextWindow.WriteLine("")
EndFor