Answers for "printing a map in kotlin"

0

printing a map in kotlin

for ((key, value) in map) {
    println("$key = $value")
}
Posted by: Guest on June-07-2021

Browse Popular Code Answers by Language