RosettaCodeData/Task/Loops-For/Alore/loops-for.alore

7 lines
73 B
Plaintext

for i in 0 to 6
for j in 0 to i
Write('*')
end
WriteLn()
end