Created
February 11, 2015 17:17
-
-
Save pythonicrubyist/33c5d0311ff08352cfdf to your computer and use it in GitHub Desktop.
Variables in Swift
This file contains 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
// Variables in Swift | |
// Every variable in Swift is declared with the keyword "var". | |
// Swift is a type-safe language. It is strongly typed. | |
// All varables is Swift are of a specific type. | |
// Swift performs type inference if the type is not declared. | |
var s = "Hello World!" // Type inferred as string | |
var i = 7 // Type inferred as integer | |
var b = false // Type inferred as boolean | |
// b = "Hi" will throw a type error | |
// Type annotation means specifying the type without initializing the variable. | |
// : means "is of type" | |
var a : Int | |
var c : Character | |
var o : Bool | |
// You can specify both the default value and specify type. | |
var str : String = "Hi" | |
// COnstants in Swift | |
// Constants defined by the keyword "let" have to stay the same during the lifetime of the program. | |
// Use of constants are strongly recommended in Swift | |
// As a safty measure. | |
let r = 2 | |
// String interpolation | |
var name = "Ramtin" | |
println("My name is \(name)") | |
// String Concatenation | |
var s1 = "a" | |
var s2 = "b" | |
println(s1 + ", " + s2) | |
// Type Casting | |
var i1 = 2 | |
var d1 = 3.0 | |
println(Double(i1) * d1) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment