4 lines
178 B
Kotlin
Vendored
4 lines
178 B
Kotlin
Vendored
class C {
|
|
val names: List<String> // clearly tells the type of the property upfront
|
|
<expr>field: MutableList<String> = mutableListOf()</expr>
|
|
} |