mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
7 lines
115 B
Plaintext
7 lines
115 B
Plaintext
class PrivateVar() {
|
|
private var x = 0;
|
|
|
|
fun setValueOfX(aValue: Int) { x = aValue }
|
|
fun getValueOfX() = x
|
|
}
|