Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created May 29, 2018 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sajjadyousefnia/78ee6ebf71853a09ed129a178c8d4703 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/78ee6ebf71853a09ed129a178c8d4703 to your computer and use it in GitHub Desktop.
stringVariable?.run {
println("The length of this String is $length")
}
// Similarly.
stringVariable?.let {
println("The length of this String is ${it.length}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment