6 lines
84 B
Kotlin
Vendored
6 lines
84 B
Kotlin
Vendored
class AAA {
|
|
private var x = 42
|
|
fun setX(x: Int) {
|
|
this.x = x
|
|
}
|
|
} |