RosettaCodeData/Task/Loops-For/Ada/loops-for.ada

7 lines
93 B
Ada

for I in 1..5 loop
for J in 1..I loop
Put("*");
end loop;
New_Line;
end loop;