๐ Learning and exploring the Rust programming language.
This repository illustrates different concepts, patterns and examples via standalone subprojects. Each subproject is completely independent of the others and do not depend on the root project. This standalone subproject constraint forces the subprojects to be complete and maximizes the reader's chances of successfully running, understanding, and re-using the code.
The subprojects include:
This is not an executable project but instead contains my notes about Rust.
See the README in notes/
.
Verbatim copy of the Programming a Guessing Game chapter.
See the README in guessing-game/
.
A simple Rust program to read a file.
See the README in read-file/
.
A simple Rust program to deserialize and serialize JSON using the popular Rust JSON library called Serde.
See the README in json/
.
An illustration of Rust iterators.
See the README in iterators/
.
General clean-ups, TODOs and things I wish to implement for this project:
- SKIP (I've got this covered) Create an error handling subproject
- E.g.
Result/Ok/Err
and the?
special thing
- E.g.
- Create an argument parsing subproject
- Create an async subproject
- Create a subproject that shells out to another process