如何在Kotlin REPL中加载文件

时间:2017-10-08 15:03:19

标签: kotlin read-eval-print-loop

根据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.ktload: "Rational.kt"都不起作用。 如何在REPL中加载文件? 我找不到一个例子。

1 个答案:

答案 0 :(得分:0)

尝试不加引号:

>>> :load Rational.kt