在IntelLij IDEA中下载了scala插件,运行时报错scalac: Error: Error compiling the sbt component 'compiler-interface-2.7.0-final-52.0'
创建的maven
在IntelLij IDEA中下载了scala插件,运行时报错scalac: Error: Error compiling the sbt component 'compiler-interface-2.7.0-final-52.0'
试试这样写,看看对不对
object HelloWorld {
/*
* 以下程序将输出'Hello World!'
*/
def main(args: Array[String]) {
println("Hello, world!") // 输出 Hello World
}
}