RosettaCodeData/Task/Loops-For/BASIC256/loops-for.basic

8 lines
70 B
Plaintext

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