Files
tldr/pages.zh/common/swift.md

28 lines
420 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Swift
> 创建、运行和构建 Swift 项目。
> 更多信息:<https://swift.org>。
- 启动 REPL交互式命令行
`swift repl`
- 执行程序:
`swift {{file.swift}}`
- 使用包管理器启动新项目:
`swift package init`
- 生成 Xcode 项目文件:
`swift package generate-xcodeproj`
- 更新依赖项:
`swift package update`
- 为发布编译项目:
`swift build -c release`