如何使用js命令行编译器?
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的最新入门指南?
答案 0 :(得分:4)
您需要指定库的路径(kotlin-jslib.jar),使用-libraryFiles
命令行选项