RosettaCodeData/Task/Loops-For-with-a-specified-step/E/loops-for-with-a-specified-step-1.e
2023-07-01 13:44:08 -04:00

6 lines
92 B
Text

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