White House urges developers to dump C and C++::Biden administration calls for developers to embrace memory-safe programing languages and move away from those that cause buffer overflows and other memory access vulnerabilities.
White House urges developers to dump C and C++::Biden administration calls for developers to embrace memory-safe programing languages and move away from those that cause buffer overflows and other memory access vulnerabilities.
Such as? (Non-programmer here, so I don’t know the ins and outs of programming languages.)
Zig and Rust come to mind, at least for replacements for low level languages.
Zig isn’t memory-safe
My bad, I was thinking of Nim but wrote Zig for some reason. Long day yesterday 🙃
C#
Isn’t that only microsoft exclusive and closed source? Also does compiling it really yield the same speed as C, it is garbage collected isn’t it?
*proceeds to wrap everything in unsafe {}
Rust is the main one for the kind of code that’s typically written in C++. Most memory-safe languages make big compromises on performance, but Rust code tends to run about as fast as comparable C++ code.