🦀 Learn Rust by examples.
This repository contains a set of tutorials to help you learn Rust fast.
If you like this project, please consider giving it a star ⭐
Happy learning! 😃
- Hello World - Introduction to Rust and Cargo.
- Variables - Learn about variables and mutability.
- Types - Learn about primitive types and operators.
- Tuples - Learn how to construct a heterogeneous collection of values with tuples.
- Arrays - Learn how to construct a homogeneous collection of values with arrays.
- Flow Control - Learn how to control the flow of your application.
- Functions - Learn how to decouple your logic using functions.
- Memory Safety - Learn about ownership, borrowing and lifetimes.
- Structures - Learn how to create custom data types with structures.
- Enumerations - Learn how to create custom data types with enumerations.
- Generics - Learn how to create generic code.
- Traits - Learn how to create abstract code.