how to create empty mutable list in kotlin code example
Example 1: how to initialize mutable list kotlin
val mutableList : MutableList<Kolory> = ArrayList()
Example 2: how to initialize mutable list kotlin
val mutableList = mutableListOf<Kolory>()