nemanjam
fun main(args: Array<String>) { val x = arrayOf(1, 2, 3, 4, 5, 6) x.forEach { if (it % 2 == 0) { return } println("$it is odd") } return }