you could use `b!!.let { print(it) }` instead of `...
# getting-started
a
you could use
b!!.let { print(it) }
instead of
b?.let { print(it) }
if you want to assert instead of not executing silently. I guess that depends on your use case.