我正在通过在线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");
}
}
出现超时错误。
此link可以100%复制。
有什么想法吗?