class PrivateVar() { private var x = 0; fun setValueOfX(aValue: Int) { x = aValue } fun getValueOfX() = x }