Skip to content

Instantly share code, notes, and snippets.

@goindwalia
Last active May 18, 2017 07:01
Show Gist options
  • Save goindwalia/fba781d82bbf052627b1f1f0c1b2d4b6 to your computer and use it in GitHub Desktop.
Save goindwalia/fba781d82bbf052627b1f1f0c1b2d4b6 to your computer and use it in GitHub Desktop.
/* won’t compile */
val name: String? = null
val len = name.length
/* correct way */
val name: String? = null
val len = name?.length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment