We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cc0b22 commit a8680deCopy full SHA for a8680de
README.md
@@ -1,12 +1,14 @@
1
# The Rust Programming Language
2
3
-Rust is a systems programming language that is fast, memory safe and
4
-multithreaded, but does not employ a garbage collector or otherwise
5
-impose significant runtime overhead.
+Rust is a fast systems programming language that guarantees
+memory safety and offers painless concurrency ([no data races]).
+It does not employ a garbage collector and has minimal runtime overhead.
6
7
This repo contains the code for `rustc`, the Rust compiler, as well
8
as standard libraries, tools and documentation for Rust.
9
10
+[no data races]: http://blog.rust-lang.org/2015/04/10/Fearless-Concurrency.html
11
+
12
## Quick Start
13
14
Read ["Installing Rust"] from [The Book].
0 commit comments