6 lines
76 B
Kotlin
Vendored
6 lines
76 B
Kotlin
Vendored
var my: Int = 0
|
|
get() = -field
|
|
set(arg) {
|
|
field = arg
|
|
}
|