I've seen like 20 times people trying to figure ou...
# announcements
m
I've seen like 20 times people trying to figure out best ways to combine
let
with kind of
else
and I'll keep repeating
Copy code
val readonly = someMutablePropertyOrWhatnot
if (readonly != null) {
} else {
}
is the best way to handle it.