Kotlin - Collections Fundamentals
What will be the output of this Kotlin code?
Note: The add() line is commented out.
val list = listOf("a", "b", "c")
// list.add("d")
println(list.size)Note: The add() line is commented out.
