ross_a
data class Person(private val _name: String) { val name = _name.toUpperCase() fun nameing() = name }