Kotlin list : listOf()
In Kotlin, listOf() is a function that is used to create an immutable list of elements. The listOf() function takes a variable number of arguments and returns a new list containing those arguments. Here's an example: Kotlin val numbers = listOf(1, 2, 3, 4, 5) In this example, we create a new list ca