In light of earlier discussion, I want to add that...
# announcements
d
In light of earlier discussion, I want to add that
x.apply {}
does not do the same as
with(x) {}
in all situations, because
apply
returns the receiver, whereas
with
returns the result of the code block.
👆 1