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

8 lines
89 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
100 FOR I=1 TO 5
110 FOR J=1 TO I
120 PRINT "*";
130 NEXT J
140 PRINT
150 NEXT I
160 END