我一直在尝试使用 Scala 插件在 Eclipse 上运行 Scala hello world 示例。编写以下内容:
package scala_test
object Test {
def main(args: Array[String]) {
println("Hello, World")
}
}
产生以下错误:
<console>:1: error: eof expected but '}' found.
}
^
我在 Windows 机器和 Mac 上都试过这个(都使用 Eclipse 3.7)。我已经尝试注释掉函数定义(只为 Test 对象留下一个空主体),但错误仍然存在。关于可能导致这种情况的任何想法?