以下代码导致此编译时错误:Missing closing brace } assumed here
此对象在名为“Currying”的Scala工作表中定义。我认为代码是正确的吗?
object Currying {
def add(x:Int, y:Int) = x + y
add(1, 2) // 3
} //compile error is here
答案 0 :(得分:2)
我刚注意到当我删除评论'// 3'时它可以工作,也许是一个工作表错误