Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Created August 1, 2016 09:56
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 fabiomsr/68e3b3a2b7fa3f418b67aca0be089b5d to your computer and use it in GitHub Desktop.
Save fabiomsr/68e3b3a2b7fa3f418b67aca0be089b5d to your computer and use it in GitHub Desktop.
final String name = null
String lastName
lastName = null
val name = null // String? type
var lastName : String?
lastName = null
var firstName : String
firstName = null // Compilation error!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment