在scala中“ \ n”是必不可少的吗?

时间:2019-06-20 03:20:56

标签: scala

我正在通过在线tool来学习Scala。

这段代码很好用

useInterval((next) => {
    get('/api/v1/streams/1').then(data => {
        // tell the timer to begin
        next()
    })
}, 5000)

如果我删除了打印行末的“ \ n”。

object hello
{
    def main(args: Array[String])
    {
        print("Hello World.\n");
    }
}

出现超时错误。

enter image description here

link可以100%复制。

有什么想法吗?

0 个答案:

没有答案