Open hhstore opened 10 months ago
✅ https://www.swift.org/documentation/
swift 版本:
https://docs.swift.org/swift-book/documentation/the-swift-programming-language/compatibility
# 当前最新版本:
swift: 5.9
xcode: 15
中文翻译:
# macOS: 12.6.2
╰─>$ xcodebuild -version 12:55:16
Xcode 14.2
Build version 14C18
╰─>$ swift --version
swift-driver version: 1.62.15 Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
Target: x86_64-apple-macosx12.0
mkdir try-swift/
cd try-swift/;
# 初始化, 默认生产一堆模板文件
swift package init --type=executable
tree try-swift/ -L 3
try-swift/
├── Package.swift
├── README.md
├── Sources
│ └── try-swift
│ └── try_swift.swift
└── Tests
└── try-swiftTests
└── try_swiftTests.swift
5 directories, 4 files
cd try-swift/
# 编译+运行: 打印 hello
swift run
cd try-swift/
swift test
视频:
1
1
1
1
📖 Abstract:
💯 Related: