https://github.com/rain1024/learn-rust
Learn Rust
https://github.com/rain1024/learn-rust
Last synced: about 2 months ago
JSON representation
Learn Rust
- Host: GitHub
- URL: https://github.com/rain1024/learn-rust
- Owner: rain1024
- Created: 2022-09-23T06:32:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-19T12:18:28.000Z (over 3 years ago)
- Last Synced: 2025-02-26T03:26:56.056Z (over 1 year ago)
- Language: Rust
- Size: 46.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Learn Rust
This is my repository for learning rust.
## ⚡ Getting Started
* ⭐ [How to install Rust on MacOS](getting-started/how-to-install-rust-on-macos.md)
## 📙 Concepts
* [01. Hello world](concepts/c01-hello-world)
* [02. Functions & Datatypes](concepts/c02-functions-datatypes)
* [03. Structs](concepts/c03-structs)
* [Smart Pointers](smart-pointers)
* Generics, Traits, Enums
* Macros
* Crates ecosystem
## 💪 Exercises
* [01-hello-world](exercises/e01-hello-world)
* [02-lucians-luscious-lasagna](exercises/e02-lucians-luscious-lasagna) `function`
* [03-assembly-line](exercises/e03-assembly-line) `function`
* [health-statistics](exercises/health-statistics) `struct`
* [semi-structured-logs](exercises/semi-structured-logs) `enum`
* [low-power-embedded-game](exercises/low-power-embedded-game) `destructuring` `tuples` `iterator`
* [sublist](exercises/sublist)
## Miscellaneous
Notes
* 2022-10-02. I found this https://exercism.org/tracks/rust/concepts is very interesting.