harmony
val x = y if (x != null) {}
okkero
y
if (y != null) {}
gjesse
y?.let{ // anything in here is null safe // and will only be excuted if y != null }
trevjones
y()?.let { it.something() }
A modern programming language that makes developers happier.