how to initialize mutable list kotlin
snippet in kotlin
how to initialize mutable list kotlin
user5422
val mutableList : MutableList<Kolory> = ArrayList()
how to initialize mutable list kotlin
user599
val mutableList : MutableList<Kolory> = arrayListOf()
how to initialize mutable list kotlin
user2316
val mutableList = mutableListOf<Kolory>()