An open API service indexing awesome lists of open source software.

https://github.com/sammyne/the-rust-programming-language

Reading notes for <The rust programming language>
https://github.com/sammyne/the-rust-programming-language

programming-language rust

Last synced: 5 months ago
JSON representation

Reading notes for <The rust programming language>

Awesome Lists containing this project

README

          

# The rust programming language

## Progress
- [x] Chapter 01. Getting started
- [x] [Chapter 02. Programming a Guessing Game][./chapter02/README] (07/19)
- [x] [Chapter 03. Common Programming Concepts](./chapter03/README.md) (07/10)
- [x] [Chapter 04. Understanding Ownership](./chapter04/README.md) (07/05)
- [x] [Chapter 05. Using Structs to Structure Related Data](./chapter05/README.md) (06/27)
- [x] [Chapter 06. Enums and Pattern Matching](./chapter06/README.md) (06/20)
- [x] [Chapter 07. Managing Growing Projects with Packages, Crates, and Modules](./chapter07/README.md) (06/14)
- [x] [Chapter 08. Common Collections](./chapter08/README.md) (06/06)
- [x] [Chapter 09. Error Handling](./chapter09/README.md) (06/06)
- [x] [Chapter 10. Generic types, traits, and lifetimes](./chapter10/README.md) (05/25)
- [x] Chapter 11. Writing Automated Tests (05/23)
- [x] Chapter 12. An I/O Project: Building a Command Line Program
- [x] Chapter 13. Functional Language Features: Iterators and Closures
- [ ] Chapter 14. More About Cargo and Crates.io
- [x] Chapter 15. Smart Pointers
- [x] Chapter 16. Fearless Concurrency
- [x] Chapter 17. Object-oriented programming features of rust
- todo: rearrange listing 01-11
- [x] Chapter 18. Patterns and Matching (03/18)
- [ ] Chapter 19. Advanced Features