mirror of https://github.com/CrimsonTome/tldr.git
29 lines
439 B
Markdown
29 lines
439 B
Markdown
# swift
|
|
|
|
> Create, run and build Swift projects.
|
|
> More information: <https://swift.org>.
|
|
|
|
- Invoke the interactive interpreter (REPL):
|
|
|
|
`swift`
|
|
|
|
- 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`
|