<@U55LSMQ4W> You are wrong about this. It is read-...
# android
j
@mmaillot You are wrong about this. It is read-only, but still mutable:
Copy code
val mutableList = mutableListOf("foo", "bar")
val list: List<String> = mutableList
mutableList += "baz"
println(list) // Outputs "foo", "bar" and "baz"