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
```

Reply via email to