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

7 lines
81 B
Plaintext

for n = 1 to 5
for m = 1 to n
print "*";
next m
print
next n