`var x: String? = “x”; x?.let { println("x not nul...
# getting-started
d
var x: String? = “x”; x?.let { println("x not null") }?: println("x null”)