fun main() { val xs: List = listOf(2, 3, 5, 8) println(xs.map { x -> x * x }) println(xs.filter { x -> x % 2 != 0 }) }