Last active
April 29, 2016 14:11
-
-
Save thanhluu/c30265bc1a4064820360112126f6ac22 to your computer and use it in GitHub Desktop.
Swift Variables and Constants
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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