if a property is defined with a getter like so: ``...
# getting-started
h
if a property is defined with a getter like so:
Copy code
val foo get() = bar + 2
val bar = 1
is
get()
run every time the value of
foo
is passed, even though
bar
is also immutable?