This is the companion repository for the Ultimate Rust Crash Course published online. You will get the most out of this training experience by purchasing a license or subscribing to the course and watching the course videos while running through the exercises in this repository.
Watching is fun, but you will learn a lot more if you dig in and do some coding! This repository is for you hands-on-learners who are ready to roll.
I use macOS, and that is what I developed this course on. Everything ought to work similarly on major Linux distributions and Windows. Please contact me ASAP if you have trouble with anything on this page.
Rust is required for this course! The latest stable version is always recommended.
- Go to rust-lang.org and click on the
Get Started
button and follow the instructions to install Rust for your operating system.- Please DO NOT install rust via some other package manager. It will probably be a version that is really old.
You should get somewhat similar output if you run commands like the ones below (newer versions are okay). If you
already have an old version of Rust installed, then run rustup update
to install a newer version.
$ rustc --version
rustc 1.42.0 (b8cedc004 2020-03-09)
$ cargo --version
cargo 1.42.0 (86334295e 2020-01-31)
- Clone or download this repository to your computer.
Please do the following (see the How To Learn Rust page for details on all of these)
- Choose an IDE (or Editor) and configure it with Rust support and customize it to your liking
- Choose one place to "find answers" and either introduce yourself (if it's a forum, IRC, etc.) or find the answer to one question you have.
- Try doing something in Rust! If you don't have a better idea, then just do this:
cargo new message
cd message
cargo run
- Edit
src/main.rs
and change the message. cargo run
again to see your new message.
- Check out the descriptions of the tools and books.
Now you are ready for the training! Go watch the Ultimate Rust Crash Course and come back here for the exercises.
- Training by the instructor (Nathan Stocks) in the form of the Ultimate Rust Crash Course
- This Repository 🎉
- How To Learn Rust
- The Rust Standard Library
Please clone this repository! These exercises are designed as Rust projects for you to edit on your
own computer, with the exception of Exercise A (which is just a README.md
file).
The exercises are separate Rust projects inside the exercises/
subdirectory. For each exercise,
you should:
- Open the corresponding
exercise/EXERCISE_NAME
directory in your IDE/Editor - Navigate to the same directory with your Terminal application (so you can run
cargo run
, etc.) - Open up the
src/main.rs
file. - Follow the numbered exercise instructions in the code comments.
If you encounter any problems with the exercises, please feel free to use the online course communication tools to contact me, or open an issue. Either way. 😄
For your convenience, here is a list of all the exercises, with links to view the code on GitHub.
- Exercise A - Variables & Scope
- Exercise B - Functions
- Exercise C - Simple Types
- Exercise D - Control Flow & Strings
- Exercise E - Ownership & References
- Exercise F - Structs & Traits
- Exercise G - Collections & Enums
- Exercise H - Closures & Threads
- Exercise Z - Final Project
- Invaders - A terminal-based Space Invaders arcade game clone.