4
如何使用js命令行編譯器?kotlin命令行編譯器
fun main(args: Array<String>): Unit {
println("Hello world!")
}
E:\kotlinc\bin>kotlinc-js -output test -sourceFiles test.kt
ERROR: E:\kotlinc\bin\test.kt: (4, 5) Unresolved reference: println
exec() finished with COMPILATION_ERROR return code
在IDE中,我無法讓js編譯工作。是否有最新的IntelliJ IDEA 12入門指南?
文檔在:https://kotlinlang.org/docs/tutorials /command-line.html –