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

8 lines
85 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
FOR i = 1 TO 5
FOR j = 1 TO i
PRINT "*";
NEXT j
PRINT
NEXT i
END