Skip to content

Instantly share code, notes, and snippets.

@thanhluu
Last active April 29, 2016 14:11
Show Gist options
  • Save thanhluu/c30265bc1a4064820360112126f6ac22 to your computer and use it in GitHub Desktop.
Save thanhluu/c30265bc1a4064820360112126f6ac22 to your computer and use it in GitHub Desktop.
Swift Variables and Constants
let favoriteProgramingLanguage = "Swift"
let year = 2014 // Int
var version = 2.0 // Double
var isAwesome = true // Bool
var someString = ""
//someString = 12.0
let bestPlayer: String = "Michael Jordan"
let averagePointsPerGame: Double = 30.1
let yearOfRetirement: Int = 2003
let hallOfFame: Bool = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment