Introduction to Rust
From LINUX.CONF.AU 2020
Essentials
Where? | Room 9 |
When? | Thursday, |
Target audience | Programmers from other languages who are curious about Rust |
Set-up
- Install Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
. (Visit https://rustup.rs/ for instructions on other platforms.) - Check that
~/.cargo/bin
is in yourPATH
:env | grep .cargo
- Test your installation:
-
rustc --version
-
cargo --version
-