Skip to content

Instantly share code, notes, and snippets.

@develodroid
Created July 25, 2016 15:52
Show Gist options
  • Save develodroid/22b741f6adf46dbf045a05361e4e50c5 to your computer and use it in GitHub Desktop.
Save develodroid/22b741f6adf46dbf045a05361e4e50c5 to your computer and use it in GitHub Desktop.
// Read only variables, assign just once
val name : String = "develodroid"
val name2 = "develodroid" // Type inference
val name3 : String // Type is required when no initialization
name4 = "develodroid" //
// Mutable variables
var name5 : String = "develodroid"
name5 = "newName"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment