Rust Fundamentals
Rust Bootcamp week 2: Rust Fundamentals
This week, you will learn how to create a Rust project using Cargo and how all files and components work together. Additionally, you will understand variables, assignment, and controlling flow with logic, loops and other conditional statements. Finally, you’ll create functions and get used to the borrowing concept in Rust as well as working with error handling using match
.
Contents
This week has several examples located in the ./examples directory. Make sure you have Rust installed and you are using Visual Studio Code.
This repository is Codespaces ready, and it is set as a template repository. You can create a new repository from this template and start working on your own with Codespaces. This means that Rust, Copilot, and all the extensions are already installed and configured for you.
Lesson 1: Introduction to Rust
- Overview of project files
- Variable assignment and immutability
- Basics of control flow
- Shadowing variables
Lesson 2: Loops and Control Flow
- Introduction to loops in Rust
- Conditional statements
- The while loop
- The for loop
- Break and continue
- The match expression
Lesson 3: Function Basics
- Introduction to functions
- Return values
- Function arguments
- The borrowing concept
- Using Panic!
- Error handling with match
Resources
Coursera Courses