Swift Cheat Sheet: Difference between revisions
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
* [https://koenig-media.raywenderlich.com/uploads/2019/11/RW-Swift-5.1-Cheatsheet-1.0.1.pdf Swift 5.1 Cheat Sheet and Quick Reference] | * [https://koenig-media.raywenderlich.com/uploads/2019/11/RW-Swift-5.1-Cheatsheet-1.0.1.pdf Swift 5.1 Cheat Sheet and Quick Reference] | ||
* [https://medium.com/makingtuenti/writing-a-scalable-api-client-in-swift-4-b3c6f7f3f3fb Writing a Scalable API Client in Swift 5] | * [https://medium.com/makingtuenti/writing-a-scalable-api-client-in-swift-4-b3c6f7f3f3fb Writing a Scalable API Client in Swift 5] | ||
* [https://github.com/SimpleBoilerplates/SwiftUI-Cheat-Sheet SwiftUI Cheat Sheet] | |||
* [https://www.programiz.com/swift-programming/operators Swift Operators] | * [https://www.programiz.com/swift-programming/operators Swift Operators] | ||
* [https://github.com/gonzalezreal/DirectLine Direct Line] | * [https://github.com/gonzalezreal/DirectLine Direct Line] | ||
* [https://github.com/victorpimentel/MarvelAPI/tree/master/MarvelAPI.playground Marvel API] | * [https://github.com/victorpimentel/MarvelAPI/tree/master/MarvelAPI.playground Marvel API] |
Latest revision as of 17:37, 15 December 2020
import UIKit
var greeting = "Hello "
let greetedTo = "World"
greeting = greeting + greetedTo
//greeting = "\(greeting)\(greetedTo)"
print(greeting)