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