RosettaCodeData/Task/Loops-For-with-a-specified-step/E/loops-for-with-a-specified-step-3.e
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
86 B
Text

for i ? (i %% 2 <=> 0) in 2..8 {
print(`$i, `)
}
println("who do we appreciate?")