the `let` syntax is safer as it correctly handles ...
# announcements
b
the
let
syntax is safer as it correctly handles threading while
if(...)
can throw an exception if circumstances are correct. In java-land a similar concept to the let is
Resource tempResource = resource; if (tempResource != null) { something(tempResource) }