RosettaCodeData/Task/Loops-For/Avail/loops-for-1.avail

6 lines
102 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
For each row from 1 to 5 do
[
For each length from 1 to row do [Print: "*";];
Print: "\n";
];