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

7 lines
81 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
for n = 1 to 5
for m = 1 to n
print "*";
next m
print
next n