你在 Mac 上使用 Swift 的第一个程序(使用游乐场)
在 Mac 上,按照此链接从 Mac App Store 下载并安装 Xcode。
安装完成后,打开 Xcode 并选择 Playground 入门 :
在下一个面板中,你可以为 Playground 命名,也可以将其保留为 MyPlayground
并按 Next :
选择保存 Playground 的位置,然后按 Create :
Playground 将打开,你的屏幕应如下所示:
现在 Playground 在屏幕上,按 ⇧ + cmd + Y 显示调试区域。
最后删除 Playground 中的文本并输入:
print("Hello world")
你应该在调试区中看到 Hello world
,在右侧边栏中看到 “Hello world \ n” :
恭喜! 你已经在 Swift 中创建了第一个程序!