`fun Any?.ifNull(block: () -> Unit) { if (this ...
# announcements
y
fun Any?.ifNull(block: () -> Unit) { if (this == null) block() }