comprehensive-rust icon indicating copy to clipboard operation
comprehensive-rust copied to clipboard

This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust.

Results 608 comprehensive-rust issues
Sort by recently updated
recently updated
newest added

This pull request adds a new word counter exercise to the comprehensive-rust course. The exercise includes: - Implementation of a word counter in `src/std-types/word_counter.rs` - Solution with detailed comments -...

In day 1 afternoon, chapter "Shared References", we say in the speaker notes: > Rust does not automatically create references for you - the & is always required. But this...

The existing example is too similar to the first one, since it also is demonstrating a dangling reference to a heap allocation after modifying the `Vec`. This new example demonstrates...

The slide on `static`s gives this example: ```rust static BANNER: &str = "Welcome to RustOS 3.14"; ``` Then it describes how the item has a stable address. While this is...

At this point we haven't talked about iterators, so students are only going to be confused by this suggestion.

Create a stable format plugin for PO files using `dprint`.

This will probably require a fair bit of discussion and revision, but this is how things stand at present. Notably, this material does not have exercises and might benefit from...

Via #2688 we can now install the dependent project tools with one cross platform command `cargo xtask install-tools`. The command fails to install `mdbook-exerciser` and `mdbook-course` however unless you are...