Difference between revisions of "Script Snippet: Swift Packages"

From Coder Merlin
(Created page with "== Create a new Swift Package for an Executable == swift package init --type executable")
 
Line 1: Line 1:
== Create a new Swift Package for an Executable ==
== Create a new Swift Package for an Executable ==


<syntaxhighlight lang="swift" highlight="12">
swift package init --type executable
swift package init --type executable
</syntaxhighlight>

Revision as of 16:55, 1 February 2019

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Create a new Swift Package for an Executable[edit]

swift package init --type executable