如何使用 kotlin-native-linux 打开 kotlin repl?
How to open kotlin repl using kotlin-native-linux?
我刚刚下载了 kotlin 编译器 kotlin-native-linux-1.3.61.tar.gz
来自这里:https://github.com/JetBrains/kotlin/releases/tag/v1.3.61
但是当我尝试打开repl时,如documentation中所建议的那样,运行:
/opt/kotlin-native-linux-1.3.61/bin/kotlinc
我得到:
error: you have not specified any compilation arguments. No output has been produced.
文档说:"We can run the compiler without parameters to have an interactive shell"
如何打开 kotlin repl?
repl
在 kotlin-compiler-1.3.61.zip
可用。
kotlin-native
用于将 Kotlin 代码编译为本机二进制文件,无需虚拟机即可 运行。
可能没有理由在 kotlin-native
包的 kotlinc
上添加 repl
和 -script
支持。
我刚刚下载了 kotlin 编译器 kotlin-native-linux-1.3.61.tar.gz
来自这里:https://github.com/JetBrains/kotlin/releases/tag/v1.3.61
但是当我尝试打开repl时,如documentation中所建议的那样,运行:
/opt/kotlin-native-linux-1.3.61/bin/kotlinc
我得到:
error: you have not specified any compilation arguments. No output has been produced.
文档说:"We can run the compiler without parameters to have an interactive shell"
如何打开 kotlin repl?
repl
在 kotlin-compiler-1.3.61.zip
可用。
kotlin-native
用于将 Kotlin 代码编译为本机二进制文件,无需虚拟机即可 运行。
可能没有理由在 kotlin-native
包的 kotlinc
上添加 repl
和 -script
支持。