https://github.com/ppenna/playground-rust
🦀 Learn Rust by examples.
https://github.com/ppenna/playground-rust
Last synced: about 1 year ago
JSON representation
🦀 Learn Rust by examples.
- Host: GitHub
- URL: https://github.com/ppenna/playground-rust
- Owner: ppenna
- License: mit
- Created: 2022-06-23T18:57:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-27T13:37:08.000Z (almost 3 years ago)
- Last Synced: 2025-04-10T23:13:19.295Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 23.4 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Playground
🦀 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! 😃
## Contents
1. [Hello World](01-hello-world/README.md) - Introduction to Rust and Cargo.
2. [Variables](02-variables/README.md) - Learn about variables and mutability.
3. [Types](03-primitive-types/README.md) - Learn about primitive types and operators.
4. [Tuples](04-tuples/README.md) - Learn how to construct a heterogeneous collection of values with tuples.
5. [Arrays](05-arrays/README.md) - Learn how to construct a homogeneous collection of values with arrays.
6. [Flow Control](06-flow-control/README.md) - Learn how to control the flow of your application.
7. [Functions](07-functions/README.md) - Learn how to decouple your logic using functions.
8. [Memory Safety](08-memory-safety/README.md) - Learn about ownership, borrowing and lifetimes.
9. [Structures](09-structs/README.md) - Learn how to create custom data types with structures.
10. [Enumerations](10-enums/README.md) - Learn how to create custom data types with enumerations.
11. [Generics](11-generics/README.md) - Learn how to create generic code.
12. [Traits](12-traits/README.md) - Learn how to create abstract code.