this post was submitted on 08 Feb 2025
191 points (98.5% liked)

Linux

6033 readers
256 users here now

A community for everything relating to the GNU/Linux operating system

Also check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ZILtoid1991@lemmy.world 3 points 1 week ago (1 children)

Especially as there's D, a language that when used in betterC mode, is on-par with C, minus the archaic precompiler, which is replaced with very powerful metaprogramming capabilities.

[–] FizzyOrange@programming.dev 4 points 1 week ago (1 children)

D didn't catch on for many good reasons... And it never will. Zig has way more momentum (and it better!) as a "better C", and obviously the main draw of Rust is memory safety without GC which D doesn't have.

[–] ZILtoid1991@lemmy.world 1 points 1 week ago (1 children)

D has a way for GC free operation, the easiest way is by using it in BetterC mode. The harder way is writing your own runtime without a GC.

[–] FizzyOrange@programming.dev 3 points 1 week ago

Yes but that isn't memory safe.