scala 3中的“scala.tools.nsc.maingenericrunner”的等价物是什么?

wpcxdonn  于 2021-07-14  发布在  Java
关注(0)|答案(1)|浏览(287)

什么是等价物 scala.tools.nsc.MainGenericRunner 在多蒂?
我登记了包裹 dotty.tools.dotc https://github.com/lampepfl/dotty/tree/master/compiler/src/dotty/tools/dotc 但什么也找不到。
我试着用 dotty.tools.dotc.Run 但我错了
wrap:java.lang.nosuchmethodexception:dotty.tools.dotc.run.main([ljava.lang.string;)

ego6inou

ego6inou1#

scala3控制台通常称为repl。它在Scala3中的主要入口点是 dotty.tools.repl.Main . 你可以在这里找到它。

相关问题