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.
We'll see what makes Rust so unique and powerful, and how to setup the Rust toolchain on Windows/MacOS/GNU Linux
We'll see what Cargo is and how to use it. We'll also see why its so useful and powerful.
In this tutorial, we'll learn about variables in Rust!
This tutorial goes in depth about functions in Rust
This tutorial is about control flow statements in Rust, which include if/else
statements, for
& while
loops, etc...
This tutorial talks about how a common Rust project with Cargo is structured