Kotlin - Collections Fundamentals
What will be the output of the following Kotlin code?
val cities = listOf("Paris", "Rome", "Oslo")
cities.forEach { println(it.first()) }