7 lines
107 B
Plaintext
7 lines
107 B
Plaintext
class PrivateVar {
|
|
private var x = 0;
|
|
|
|
fun setValueOfX(val: Int) { x = val }
|
|
fun getValueOfX() = x
|
|
}
|