RosettaCodeData/Task/Loops-For-with-a-specified-step/LDPL/loops-for-with-a-specified-step.ldpl
2023-09-01 09:35:06 -07:00

9 lines
125 B
Text

# Display the even numbers up to twenty.
data:
i is number
procedure:
for i from 0 to 21 step 2 do
display i lf
repeat