6 lines
95 B
Kotlin
Vendored
6 lines
95 B
Kotlin
Vendored
class My {
|
|
var x: String = ""
|
|
set(vararg value) {
|
|
x = value
|
|
}
|
|
} |