Skip to content

Instantly share code, notes, and snippets.

@MostafaNasiri
Last active November 23, 2019 09:12
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 MostafaNasiri/17a203548100022431461d4e2a1336a3 to your computer and use it in GitHub Desktop.
Save MostafaNasiri/17a203548100022431461d4e2a1336a3 to your computer and use it in GitHub Desktop.
fun main() {
val name: String? = "Jack"
name?.let {
println("Your name is: " + it)
println("Your name has " + it.length + " characters")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment