Optional typing
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
let firstFloat: Float = 4 | |
let secondFloat = 4.0 |
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
let label = "The width is " | |
let width = 94 | |
let widthLabel = label + width (Error: Could not findgi) |
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
let apples = 3 | |
let oranges = 5 | |
let appleSummary = "I have \(apples) apples." | |
let fruitSummary = "I have \(apples + oranges) pieces of fruit ." | |
let name = "Tommy" | |
let helloworld = "Nice to see you \(name) at \(3.0 + 4.5) years later." |
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
var optionalString: String? = "Hello" | |
optionalString = nil | |
var optionalName: String? = nil | |
var gretting = "Hello!" | |
if let name = optionalName { | |
gretting = "Hello, \(name)" | |
} else { | |
gretting = "Hello anonymous" | |
} | |
let vegetable = "red pepper" switch vegetable { case "celery": let vegetableComment = "Add some raisins and make ants on a log" default: let vegetableComment = "Everything tastes good in soup" }