打印/ n在xCode Playground上

时间:2015-12-26 14:10:21

标签: ios swift

当我在Xcode Playground中编写代码时,播放地打印“/ n”在我的最新代码结果上。我该如何解决?

Image Of My Question

1 个答案:

答案 0 :(得分:2)

在swift 2中,再没有println

Print现在相当于println,因此它有" \ n"。

解决问题的方法:

print(saeed, terminator: "")