Kotlin - Collections Fundamentals
What will be the output of the following Kotlin code?
val pairs = listOf("a" to 100, "b" to 200)
for ((char, num) in pairs) {
println("$char -> $num")
}