https://kotlinlang.org logo
k

kristofdho

09/12/2017, 10:07 AM
Copy code
val v: Int? = null
v?.let { println(it) } ?: println("was null")