-
Notifications
You must be signed in to change notification settings - Fork 1
Kotlin meme
HOA PHAN edited this page Apr 6, 2024
·
1 revision
val list = listOf(1, 2, 3)
fun main() {
if (list is MutableList) {
list.add(4)
}
}
