From the D Blog: Crafting Self-Evident Code in D
Julian Fondren
julian.fondren at gmail.com
Sun Oct 29 22:20:18 UTC 2023
On Thursday, 26 October 2023 at 03:39:19 UTC, Walter Bright wrote:
> I've heard from an expert insider source that Scala macros
> destroyed the language.
The worst stuff I've ever heard about Scala, apart from
compile-speed anecdotes, is "Scala Collections: Why Not?"
https://www.youtube.com/watch?v=uiJycy6dFSQ . It's really hard to
imagine a macro problem more off-putting than this video.
```scala
scala> List(1, 2, 3).toSet()
res0: Boolean = false
scala> List(1, 2, 3) contains "your mom"
res2: Boolean = false
```
More information about the Digitalmars-d-announce
mailing list