Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Swift

  1. Getting started

  2. Mint: A package manager that installs and runs Swift command line tool packages (why should I use it?)

  3. SwiftCLI

  4. Ice: A developer friendly package manager for Swift; 100% compatible with Swift Package Manager (why should I use it?)

  5. Swift Package Manager

    5.1 Create new executable app

     swift package init --type executable
    

    5.2 Build

     swift build
    

    5.3 Run

     swift run
    

    5.4 Test

     swift test