Rust for Noobs

This series dives into Rust, a language built for speed, safety, and zero-footgun coding. We’ll break down ownership, borrowing, lifetimes, and all the things that make Rust both powerful and unique. Expect hands-on examples, practical explanations, and just enough theory to actually understand what’s happening under the hood. Whether you’re here for performance, reliability, or just curious why Rust keeps showing up everywhere, this is your starting point.

1. Getting Started with Rust

We'll see what makes Rust so unique and powerful, and how to setup the Rust toolchain on Windows/MacOS/GNU Linux

2. Using Cargo

We'll see what Cargo is and how to use it. We'll also see why its so useful and powerful.

3. Variables

In this tutorial, we'll learn about variables in Rust!

4. Functions

This tutorial goes in depth about functions in Rust

5. Control Flow

This tutorial is about control flow statements in Rust, which include if/else statements, for & while loops, etc...

6. Project Structure

This tutorial talks about how a common Rust project with Cargo is structured