Created
February 6, 2022 18:16
-
-
Save kracekumar/576d20b47b9ca83743a480604671f771 to your computer and use it in GitHub Desktop.
rust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rust is a multi-paradigm, 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. | |
Rust achieves memory safety without garbage collection, and reference counting is optional. | |
Rust has been called a systems programming language and in addition to high-level features | |
such as functional programming it also offers mechanisms for low-level memory management. | |
First appearing in 2010, Rust was designed by Graydon Hoare at Mozilla Research, with contributions from | |
Dave Herman, Brendan Eich, and others. | |
The designers refined the language while writing the Servo experimental browser engine | |
and the Rust compiler. Rust's major influences include C++, OCaml, Haskell, and Erlang. | |
It has gained increasing use and investment in industry, | |
by companies including Amazon, Discord, Dropbox, Facebook (Meta), Google (Alphabet), and Microsoft. | |
Rust has been voted the "most loved programming language" in the Stack Overflow Developer Survey every year since 2016, | |
and was used by 7% of the respondents in 2021. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment