Rust is a multi-paradigm, general-purpose programming language that emphasizes performance, type safety, and concurrency. It enforces memory safety—meaning that all references point to valid memory—without a garbage collector.

Comments about Rust as an Alternative to C++
It's way less error prone and the compiler helps you, instead of fights you
Both are compiled languages with static typing
Almost everyone thinks Rust is a great C++ alternative.
Rust is the most popular Windows, Mac & Linux alternative to C++.
Rust is the most popular Open Source & free alternative to C++.
- Rust is Free and Open Source


























Identical speed paired with safer workflow. Although it has a longer compile time, this is done so to make sure less run-time errors are possible. It has certain conventions built in to the language, which makes for better coding standards and for less flame wars. Rust has great compiler debugging, with a dedicated "explain" function built in, as well as test cases. I would say this Rust is not only an alternative to C++, but a successor.