1. Getting Started With Rust

Let's be lazy...

The Lazy Way -- Let's Use Repl.It!

Go to repl.it and choose Rust. That's it!

Installing Rust

If you are on Linux or Mac, run:

$ curl https://sh.rustup.rs -sSf | sh

And add the folling to either your .zshrc or .bash_profile file:

$ export PATH="$HOME/.cargo/bin:$PATH"

Last updated