``` val v: Int? = null v?.let { println(it) } ?: p...
# announcements
k
Copy code
val v: Int? = null
v?.let { println(it) } ?: println("was null")