Swift concurrency lets you write asynchronous code that reads like synchronous code using async/await, while the compiler enforces data-race safety. Task starts concurrent work, actors protect mutable state, and @MainActor guarantees UI code runs on the main thread.
