The expression `x?.y` is equivalent to `(if (x != ...
# announcements
k
The expression
x?.y
is equivalent to
(if (x != null) x.y else null)