```class A { val value: Int get() = 3 } ``` ho...
# getting-started
k
Copy code
class A {
    val value: Int get() = 3
}
how to make the following code return
4
instead of
3
at runtime
Copy code
val change: A
    get() = A()