RosettaCodeData/Task/Loops-For/SETL/loops-for.setl

7 lines
119 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for i in {1..5} loop
for j in {1..i} loop
nprint( '*' );
end loop;
print; -- new line
end loop;