RosettaCodeData/Task/Loops-For/ERRE/loops-for.erre

7 lines
86 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
FOR I=1 TO 5 DO
FOR J=1 TO I DO
PRINT("*";)
END FOR
PRINT
END FOR