now I’m working on a pure kotlin codebase, what sh...
# getting-started
r
now I’m working on a pure kotlin codebase, what should i do?
d
Same thing applies.
h
Copy code
fun someMethod(): List<String> {
    TODO("implement me")
}
☝️ 1
r
even if no Java?
is List still the interface used by Kotlin classes?
d
r
thanks!
g
Something which presently surprised my is you can use listOf(a,b,c,) to create an immutable list