Evolution of C

JPDev@programming.dev to Programmer Humor@programming.dev – 942 points –
91

You are viewing a single comment

Anything that is drop-in replacement for C (or C++ for that matter) is going to be awful because of the same compatibility burden, imo

D is a mostly drop-in replacement (type renaming and such needed though), and it doesn't have that issue. D even has a mode called BetterC, where the D standard library and the garbage collector is left out.

What about Zig?

Oh boy, Zig is just uglier C++ with memory safety, and it still has those awful header files...

IIRC it's garbage collected, so really it's just a version of Java.

It does not use a GC

Apparently, I do not RC. I might have been thinking of Nim. A quick search indicates it's not memory-safe, though. It has a few helpful features to keep errors under control, but that's it.

I was planning to check it out, but don't have any experience yet. I thought it is more of a replacement than drop-in replacement, I may have been wrong