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

13 lines
114 B
Text

Proc Main()
byte I,J
For I=1 to 5
Do
For J=1 to I
Do
Print("*")
Od
PrintE("")
Od
Return