I see Kotlin has a List collection and I was wondering about different ways to initialize one. In Java, I could write:
List geeks = Ar
In this way, you can initialize the List in Kotlin
val alphabates : List = listOf("a", "b", "c")