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

7 lines
81 B
Plaintext

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