我正在学习Swift,并已将最新的稳定版本(0.94.1)下载到Linux机器上,并尝试编写一些纯Swift代码并进行编译。所以我有一切设置,示例文件夹中的示例工作,并生成一个文件,上面写着“Hellow,World!”。但我希望它出现在屏幕上,就像iOS文档中的println
一样。所以我写了一个文件,其中有一行println("Hello, World!")
并尝试运行它,但输出为Could not compile SwiftScript source: line 1:1: unexpected token: println
。
有人可以在这里发布一个工作问候世界计划吗?
答案 0 :(得分:0)
对于链接中的那个,使用trace()而不是println()。正如Matt所说,这是另一个'Swift',而不是Apple使用的那个。
trace()文件: http://swift-lang.org/guides/release-0.94/userguide/userguide.html#_trace
**9.3. trace**
trace will log its parameters. By default these will appear on both stdout and in the run log file. Some formatting occurs to produce the log message. The particular output format should not be relied upon. (since Swift 0.4)
示例:
trace("Hello world!!!")
您也可以使用此模拟器测试swift http://swift-lang.org/tryswift/