RosettaCodeData/Task/Loops-For-with-a-specified-step/PILOT/loops-for-with-a-specified-step.pilot
2017-09-25 22:28:19 +02:00

7 lines
105 B
Text

R : Prints the odd numbers less than 10.
C :i = 1
*Loop
T :#i
C :i = i + 2
J ( i < 10 ) :*Loop
END: