Emacs: create a Swift package/project

from blog lmno.lol @alvaro, | ↗ original
Been playing around with Swift Package Manager (SPM). Creating a new Swift package (ie. project) is pretty simple. To create a library package, we can use the following: swift package init --type library Alternatively, to create a command-line utility use: swift package init --type executable Turns out, there are a few options: empty, library,...