Rust

If you regularly check the Stack Overflow’s Developer Surveys, you’ve certainly come across Rust at some point, especially in the “most loved programming language” section. That’s because this multi-paradigm programming language is mainly focused on performance and safety. Rust has a very strict compiler that checks all variables and memory addresses, which leads you to write more effective and idiomatic programs. 

Rust is a multi-paradigm, high-level, general-purpose programming language designed for performance and safety, especially safe concurrency. Rust is syntactically similar to C++, but can guarantee memory safety by using a borrow checker to validate references.