# Step 1: Update System
$ sudo apt-get update && sudo apt-get upgrade
# Step 2: Install Rust
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
$ source $HOME/.cargo/bin
$ rustc --version
# Step 3: Hello World
$ cargo new hello_world
$ cargo run