like say you have: ``` val age = calculateAge() ``...
# announcements
a
like say you have:
Copy code
val age = calculateAge()
and then you realize, hey i cant do this on class creation because now
calculateAge()
now depends on another property set later. but you dont want to change the API or have to rewrite all usages of
age
to use
age.get()
or something.