Multiline Strings
Remember this?
let myString = "If i want to show newlines \nI need to do it like \nthis or even with \ttabs"
// If i want to show newlines
// I need to do it like
// this or even with
// tabs
Never again.
Slide 5
Slide 5 text
Multiline Strings
The future is here!
(demo)
Slide 6
Slide 6 text
Collections
Remember this?
let stringCount = "Awesomeness".characters.count
// 11
Never again.