Skip to content

Instantly share code, notes, and snippets.

@ehsansouri23
Created December 30, 2021 10:10
Show Gist options
  • Save ehsansouri23/cf801541ce562e8daf83d774fc0a6308 to your computer and use it in GitHub Desktop.
Save ehsansouri23/cf801541ce562e8daf83d774fc0a6308 to your computer and use it in GitHub Desktop.
Kotlin null checking with let function
val address = findAddress()
address?.let {
println("$it is a valid address")
} ?: run {
println("address was null)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment