Join Slack
Powered by
```class A { val value: Int get() = 3 } ``` ho...
# getting-started
k
kartikpatodi
10/13/2017, 10:59 AM
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()
Open in Slack
Previous
Next