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 (programming language)
It's more similar to C++ however is very good at handling thread safety for you.
Rust is a modern low level programming language. C is the same, but old fashioned!

- Rust is Free and Open Source



























While still semi-niche, it is being deployed in various production environments and at large corporations (like Discord!). It's a very well-designed language and also very well-programmed. My favorite PRODUCTION feature is explicit error handling, unlike in JavaScript (my comfort zone). My favorite DEVELOPMENT feature is the compiler -- this is amazing and truly goes a long way in easing new members into Rust!