RosettaCodeData/Task/Loops-For/BaCon/loops-for.bacon

7 lines
76 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
FOR i = 1 TO 5
FOR j = 1 TO i
PRINT "*"
NEXT
PRINT
NEXT