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>
- Host: GitHub
- URL: https://github.com/sammyne/the-rust-programming-language
- Owner: sammyne
- Created: 2019-09-17T01:35:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-26T07:40:36.000Z (over 5 years ago)
- Last Synced: 2025-03-18T01:48:12.800Z (10 months ago)
- Topics: programming-language, rust
- Language: Rust
- Homepage:
- Size: 348 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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