mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 01:41:42 +00:00
34 lines
523 B
Plaintext
34 lines
523 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# swift
|
|
|
|
> Create, run and build Swift projects.
|
|
> More information: <https://swift.org>.
|
|
|
|
- Start a REPL (interactive shell):
|
|
|
|
`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`
|