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

7 lines
77 B
Plaintext

for i = 1 to 5
for j = 1 to i
print "*";
next
print
next