根据Kotlin REPL中的:help
,我可以通过load:
命令加载文件。
>>> :help
Available commands:
:help show this help
:quit exit the interpreter
:dump bytecode dump classes to terminal
:load <file> load script from specified file
但是加载文件失败了。
Rational.kt
存在当前目录。
>>> load: "Rational.kt";
error: unexpected tokens (use ';' to separate expressions on the same line)
load: "Rational.kt";
load: Rational.kt
和load: "Rational.kt"
都不起作用。
如何在REPL中加载文件?
我找不到一个例子。
答案 0 :(得分:0)
尝试不加引号:
>>> :load Rational.kt