HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

swift — Create, run, and build Swift projects. More information: <https://manned.org/swiftc>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
createcommandrunbuildandcliswift

Problem

How to use the swift command: Create, run, and build Swift projects. More information: <https://manned.org/swiftc>.

Solution

swift — Create, run, and build Swift projects. More information: <https://manned.org/swiftc>.

Start a REPL (interactive shell):
swift repl


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|--configuration]}} {{debug|release}}

Code Snippets

Start a REPL (interactive shell)

swift repl

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

Context

tldr-pages: common/swift

Revisions (0)

No revisions yet.