RosettaCodeData/Task/Loops-For-with-a-specified-step/EasyLang/loops-for-with-a-specified-step.easy
2023-09-16 17:28:03 -07:00

4 lines
73 B
Text

# Prints even numbers from 0 to 100
for i = 0 step 2 to 100
print i
.