4

如何使用 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 是否有最新的入门指南?

4

1 回答 1

4

您需要指定库的路径(kotlin-jslib.jar),使用-libraryFiles命令行选项

于 2013-01-19T13:02:14.383 回答