## TL;DR

Swift is a general-purpose, compiled programming language developed by Apple, first announced at WWDC 2014 and open-sourced in December 2015. Designed as a modern replacement for Objective-C, Swift combines safety (optionals, strong typing, automatic memory management via ARC) with performance (LLVM-based compilation). It is the primary language for iOS, macOS, watchOS, and visionOS app development, and is increasingly used for server-side development via the Vapor framework.

## Key Features

- **Optionals**: Explicit handling of nil — `var name: String?`
- **Protocol-Oriented Programming**: Prefer composition over inheritance
- **Value Types**: Structs and enums are value types (copy semantics) by default
- **ARC**: Automatic Reference Counting — deterministic memory management without GC
- **Async/Await** (Swift 5.5, 2021): Native structured concurrency
- **SwiftUI** (2019): Declarative UI framework for all Apple platforms
- **Swift 6** (2024): Full data-race safety via Sendable and actor isolation

## Further Reading

- [Swift.org](https://swift.org/): Official documentation and downloads
- [Swift GitHub](https://github.com/swiftlang/swift): Source code