Problem with that approach is something like this:...
# getting-started
p
Problem with that approach is something like this:
x?.let { println("x not null"); null } ?: println("x null”)
will print both “x not null” and “x null"