"Rust is a modern systems programming language focusing on safety, speed, and concurrency. It accomplishes these goals by being memory safe without using garbage collection."
- Speed
- Safe
- Productive
Install Rust
Get started - Rust programming language
Install rust and cargo on Fedora
$ sudo dnf install -y rust cargo
$ which rustc cargo /usr/bin/rusts /usr/bin/cargo $ rustc -V rustc 1.34.0 $ cargo -V rustc 1.34.0
Install on Windows 10/11 using winget
winget install --id Rustlang.Rust.GNU
Learn Rust
https://www.rust-lang.org/learn
Cargo
Cargo is Rust’s build system and package manager.
The Cargo Book