Skip to content

Commit 1e8e066

Browse files
michi-onlverhovsky
andauthored
[swift/en] update Swift intro with current links and future-proof language (#5342)
* docs: update Swift intro with current links and future-proof language - Remove outdated Swift Programming Language book link (Swift 5.7) - Update documentation URL to current docs.swift.org location - Replace specific OS list with "all Apple operating systems" - Add mention of cross-platform support * Update swift.md --------- Co-authored-by: Boris Verkhovskiy <[email protected]>
1 parent 4256e33 commit 1e8e066

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

swift.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ contributors:
1212
filename: learnswift.swift
1313
---
1414

15-
Swift is a programming language for iOS and macOS development created by Apple. Designed to coexist with Objective-C and to be more resilient against erroneous code, Swift was introduced in 2014 at Apple's developer conference WWDC. It is built with the LLVM compiler included in Xcode 6+.
15+
Swift is a programming language created by Apple for development across all Apple operating systems. Designed to coexist with Objective-C while being more resilient against erroneous code, Swift was introduced in 2014 at Apple's developer conference WWDC. It features automatic memory management, type safety, and modern syntax that makes code more readable and less error-prone.
1616

17-
The official _[Swift Programming Language](https://itunes.apple.com/us/book/swift-programming-language/id881256329)_ book from Apple is now available via Apple Books. It goes into much more detail than this guide, and if you have the time and patience to read it, it's recommended. Some of these examples are from that book.
17+
Swift is open source and also runs on Linux and Windows. The language is built with the LLVM compiler and is included in Xcode.
1818

19-
Another great reference is _About Swift_ on Swift's [website](https://docs.swift.org/swift-book/).
19+
The official reference is *The Swift Programming Language* guide, available at [docs.swift.org](https://docs.swift.org/swift-book/documentation/the-swift-programming-language). This comprehensive guide is regularly updated with the latest Swift features and is the recommended starting point for learning the language.
2020

2121
```swift
2222
// import a module

0 commit comments

Comments
 (0)