https://github.com/costineest/rust-book
Book notes
https://github.com/costineest/rust-book
book rust rust-learning
Last synced: about 1 year ago
JSON representation
Book notes
- Host: GitHub
- URL: https://github.com/costineest/rust-book
- Owner: costinEEST
- Created: 2025-02-16T09:54:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-18T21:04:02.000Z (over 1 year ago)
- Last Synced: 2025-05-16T09:07:28.404Z (about 1 year ago)
- Topics: book, rust, rust-learning
- Homepage: https://rust-book.cs.brown.edu/ch03-05-control-flow.html
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chapters
- [3.1. Variables and mutability](./3_1-variables-and-mutability.md)
- [3.2. Data types](./3_2-data-types.md)
# Crates
- https://crates.io/crates/cargo-watch - watches over your Cargo project's source
- https://crates.io/crates/rand - random number generators and other randomness functionality
# Documentation
- `rustup doc –-book` opens:
- `file:///C:/Users/%USERNAME%/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/html/book/index.html` (Windows)
- `file://$HOME/.rustup/toolchains/nightly-x86_64-apple-darwin/share/doc/rust/html/book/index.html` (Mac)
- `rustup doc` opens:
- `file:///C:/Users/%USERNAME%/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/html/index.html` (Windows)
- `file://$HOME/.rustup/toolchains/nightly-x86_64-apple-darwin/share/doc/rust/html/index.html` (Mac)
- https://doc.rust-lang.org/std/prelude/index.html
- [Reserved keywords](https://doc.rust-lang.org/book/appendix-01-keywords.html)
- [Operators and symbols](https://doc.rust-lang.org/book/appendix-02-operators.html)