-
-
Notifications
You must be signed in to change notification settings - Fork 421
Open
Labels
Description
https://mill-build.org/mill/scalalib/intro.html says
You can also start a standalone Scala REPL with the Bundled Libraries included via ./mill --repl
but when I try it:
% mill --repl
The --repl mode is no longer supported.
the same page says:
./mill -i repl # start an Ammonite Scala REPL within your project
but I tried that in a fresh clone of com-lihaoyi/os-lib and got:
% mill -i repl
[64/64] ============================== repl ============================== 1s
Cannot resolve repl. Try `mill resolve _`, `mill resolve __.repl` to see what's available, or `mill __.repl` to run all `repl` tasks
the reason I was even trying this was that I wondered if Mill's REPL support needed to be updated for Scala 3.8, as already in the 3.8 nightlies the REPL has been split off into a separate jar, and other tools have had to adapt to that:
but now I'm unsure if Mill's REPL support still exists, to need updating?