Rust
- 29 votes547 views3 answers
- 26 votes498 views10 answers
- 11 votes490 views3 answers
- 7 votes398 views2 answers
- 6 votes534 views1 answer
- 5 votes486 views1 answer
- 5 votes476 views3 answers
- 5 votes460 views2 answers
- 4 votes482 views1 answer
- 4 votes445 views1 answer
- 3 votes413 views2 answers
- 3 votes449 views1 answer
- 3 votes509 views1 answer
- 3 votes470 views1 answer
- 3 votes464 views1 answer
- 2 votes503 views1 answer
- 2 votes543 views1 answer
- 2 votes466 views2 answers
- 2 votes464 views2 answers
- 2 votes431 views2 answers
- 2 votes519 views3 answers
- 2 votes517 views1 answer
- 2 votes466 views1 answer
- 2 votes511 views3 answers
- 2 votes501 views1 answer
Rust is a systems programming language with three objectives: safety, speed, and concurrency. It achieves these goals without the use of a garbage collector, making it a valuable language for a variety of use cases that other languages aren't good at, including embedding in other languages, programs with specific space and time requirements, and writing low-level code, such as device drivers and operating systems.
It improves on existing languages in this field by incorporating a number of compile-time safety checks that create no runtime cost while removing all data races. Rust likewise strives towards 'zero-cost abstractions', even though some of these abstractions resemble high-level language. Even so, Rust provides exact control in the same way that a low-level language would.