Swift Cheat Sheet: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 11: Line 11:
==References==
==References==
* [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://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]

Revision as of 22:28, 10 December 2020

import UIKit

var greeting = "Hello "
let greetedTo = "World"
greeting = greeting + greetedTo
//greeting = "\(greeting)\(greetedTo)"
print(greeting)

References