Most voted "scala-3" questions
Scala 3 is a complete revision of the Scala language. At its core, many aspects of the type system have been altered to better conform to functional principles. Among the novelties are: Simplification and improvements in syntax, opinionated contextual abstractions, new constructions, new functionalities for metaprogramming, improvements in type inference mechanisms and overload resolution.
Learn more…1 question
Sort by count of
-
1
votes0
answers19
viewsHow does "while / do" work in Scala 3?
Reading the changes planned for Scala 3, I discovered that the do-while was discontinued. I understand that a loop do-while can always be rewritten as a while. That said, the article examples with a…