Worst ideas/features in programming languages?

IGotD- nise at nise.com
Fri Oct 15 09:53:18 UTC 2021


On Friday, 15 October 2021 at 09:47:48 UTC, Antonio wrote:
>
> Rust has not GC.
>

Rust has GC, i.e. reference counting. This is also often required 
with multiple ownership which you often end up with in data 
structures. I would rather say GC is mandatory in Rust, unless 
you want to take the unsafe approach.

It's a matter what you regard as GC. Is only tracing GC regarded 
as true GC?


More information about the Digitalmars-d mailing list