6 lines
93 B
Ada
6 lines
93 B
Ada
for I in 1..5 loop
|
|
for J in 1..I loop
|
|
Put("*");
|
|
end loop;
|
|
New_Line;
|
|
end loop;
|