`using scala 3-nightly`
See original GitHub issueScala-CLI allows defining the following using directive:
using scala "3"
which sets the Scala version to the latest stable version.
It would be a great improvement to be able to define a using directive like:
using scala 3-nightly
which would set the Scala version to the latest nightly.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:4
- Comments:9 (9 by maintainers)
Top Results From Across the Web
How to use the Scala 3 nightly build as your REPL
Type sbt to start sbt; Type console to start a Scala 3 REPL inside sbt; Use the latest, greatest Scala syntax, as shown...
Read more >An SBT project that uses the Scala 3 nightly build - GitHub
This is a normal sbt project, but it's compiled with the Scala 3 nightly build. One thing you can do with this is:...
Read more >How do I tell sbt or scala-cli to use a nightly build of Scala 2.12 ...
To tell sbt to use one of these nightlies, you need to do three things. First, add the resolver where the nightlies are...
Read more >Is it possible to use a nightly of Scala 3 with 2.13.8
I'm trying to use dotty as a runtime dependency from a Scala 2.13.8 project using "org.scala-lang" %% "scala3-compiler" ...
Read more >Compile | Scala CLI
The nightly builds of Scala compiler are the unstable ones which are published on a nightly basis. To use the latest Scala 2...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@SethTisue You’re very welcome! If only you knew what I put @lwronski @alexarchambault and @romanowski through, with endless hickups, to get it finally working😅
It would cool if Scala 2 support were included as well.
scala-runners has this;
scala -2.13.head
runs the latest nightly, andscala -2.13.next
runs the most recent community-build-validated nightly.