In the first recipe, we will get up and running with Swift using a Swift Playground, and we will run our first piece of Swift code.

Swift 4 Programming Cookbook

In the first recipe, we will get up and running with Swift using a Swift Playground, and we will run our first piece of Swift code.
To run our first Swift program, we need to download and install our IDE. During the beta of Apple's Xcode 9, it is available as a direct download from Apple's developer website at http://developer.apple.com/download, access to this beta will require a free Apple developer account. Once the beta has ended and Xcode 9 is publicly available, it will also be available from the Mac App Store. By obtaining it from the Mac App Store, you will be informed of updates automatically, so this is the preferred route once Xcode 9 is out of beta.
Follow these steps to download Xcode from the Mac App Store:
Follow these steps to get Xcode as a direct download:
With Xcode downloaded, let's create our first Swift playground:
If you put your cursor over the output on the right-hand side, you will see two buttons: one that looks like an eye and another that is a rounded square:
Click on the eye button to get a Quick Look box of the output. This isn't that useful for just a string, but can be useful for more visual output, such as colors and views:
Click on the square button, and a box will be added in-line, under your code, showing the output of the code. This can be really useful if you want to see how the output changes as you change the code:
We will learn more about playgrounds and how we can take them further in Chapter 6, Swift Playgrounds.