``` val x = func() if (x == null) { ... } else {...
# announcements
m
Copy code
val x = func()
if (x == null) {
  ...
} else {
  ..
}
🙂