Kotlin meme - s50600822/Notes GitHub Wiki

val list = listOf(1, 2, 3)

fun main() {
    if (list is MutableList) {
        list.add(4)
    }
}