Sodamhan.com

TL;DR

swift

Create, run and build Swift projects. More information: https://swift.org.

  • 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 release

This document was created using the contents of the tldr project.