RosettaCodeData/Task/Loops-For/ERRE/loops-for.erre
2023-07-01 13:44:08 -04:00

6 lines
86 B
Text

FOR I=1 TO 5 DO
FOR J=1 TO I DO
PRINT("*";)
END FOR
PRINT
END FOR