1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/swift.md

29 lines
435 B
Markdown
Raw Normal View History

2018-05-15 05:26:34 -05:00
# swift
> Create, run and build Swift projects.
> More information: <https://swift.org>.
2018-05-15 05:26:34 -05:00
- Start a REPL (interactive shell):
2018-05-15 05:26:34 -05:00
2024-10-30 16:53:49 +01:00
`swift repl`
2018-05-15 05:26:34 -05:00
- Execute a program:
`swift {{file.swift}}`
- Start a new project with the package manager:
`swift package init`
- Generate an Xcode project file:
`swift package generate-xcodeproj`
- Update dependencies:
`swift package update`
- Compile project for release:
`swift build -c release`