9 lines
99 B
Kotlin
Vendored
9 lines
99 B
Kotlin
Vendored
class AAA {
|
|
var x = 42
|
|
private set
|
|
|
|
fun setX(x: Int) {
|
|
this.x += x
|
|
}
|
|
}
|