Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
let text = "Swift" let start = text.startIndex let end = text.index(start, offsetBy: 3) let sub = text[start..<end] // "Swi" print(sub) print(text.uppercased())