访问 https://swift.org/download/
找到 Windows 10:x86_64
下载 swift-5.10-RELEASE-windows10.exe 大约490MB
建议安装在 D:\Swift\ ,安装后大约占2.56GB
官网文档:https://www.swift.org/documentation/
中文教程:The swift programming language 中文版
运行 cmd
swiftc -v
Swift version 5.10 (swift-5.10-RELEASE)
Target: x86_64-unknown-windows-msvc
cd D:\Swift\
mkdir test ; cd test
用 Notepad++ 编写 hello.swift 如下
let a = 2
let b = 3
print("a+b=", a+b)