使用Playground编写helloworld

Playground是苹果在Xcode6中添加的新功能,使用Playground可以直观的看到运行结果

 

创建Playground工程

点击 get started with playground

随后我们就能看到IDE的主界面了

然后我们编写代码

import Cocoa

var str = "Hello World"
println(str)

可以发现,在我们编写代码时,结果就已经显示在右侧了

然后我们在菜单条上点击右键,选择Icon and Text,显示出工具栏

再点击Editor打开助手编辑器,就能更加直观的看到输出结果了