```nullableVar?.let { it.doStuff() // do o...
# announcements
k
Copy code
nullableVar?.let {
    it.doStuff()
    // do other stuff with not nullable var
}