Skip to content

Instantly share code, notes, and snippets.

@Majirefy
Created March 19, 2017 15:46
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 Majirefy/d7a255013b493fecf48e5a858fbbee39 to your computer and use it in GitHub Desktop.
Save Majirefy/d7a255013b493fecf48e5a858fbbee39 to your computer and use it in GitHub Desktop.
var str: String = "example"
str = null // compilation error, str can not hold null
var b: String? = "example"
b = null // OK, b can hold null
println(a?.substring(0,4)) // prints "exam"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment