You can, just not in the constructor. ``` data cla...
# getting-started
p
You can, just not in the constructor.
Copy code
data class HelloWorld(val someValue: String) {

    val name: String = "foo"
        get() = field.toUpperCase()
}
👍 1