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

6 lines
92 B
Text

var i := 2
while (i <= 8) {
print(`$i, `)
i += 2
}
println("who do we appreciate?")