4 lines
73 B
Text
4 lines
73 B
Text
# Prints even numbers from 0 to 100
|
|
for i = 0 step 2 to 100
|
|
print i
|
|
.
|