RosettaCodeData/Task/Loops-For/Action-/loops-for.action

14 lines
114 B
Plaintext

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