blob: c0852bd5d80b730d879332e4a5656b479c98e475 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Rust is a systems programming language that runs blazingly fast, prevents
almost all crashes, and eliminates data races. Some of its features:
- Algebraic data types, type inference
- Pattern matching and closures
- Concurrency without data races
- Guaranteed memory safety
- Optional garbage collection
- Zero-cost abstractions
- Minimal runtime
- Efficient C bindings
Rust is currently work-in-progress. Its development is driven by Mozilla
with help of large open source community.
WWW: http://www.rust-lang.org/
|