Kotlin - Collections Fundamentals
What is the output of this Kotlin code?
val numbers = listOf(1, 2, 3, 4) println(numbers.size) println(numbers.isEmpty()) println(numbers.isNotEmpty())
