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

Exercises for learning Rust, by Ferrous Systems

Results 27 rust-exercises issues
Sort by recently updated
recently updated
newest added

As discussed in #87 it may be useful for people to verify which firmware is currently on their dongle using `cargo xtask usb-list`.

I put one in Zulip based around breakfast, lunch and dinner.

https://github.com/ferrous-systems/rust-exercises/blob/main/exercise-book/src/simple-db.md Add more match. more match more match! chant grows! cc @miguelraz ```[tasklist] ### Tasks ```

The `rusb` crate wraps around the libusb C library. Now there is [nusb](https://github.com/kevinmehall/nusb) which works on Windows, macOS and Linux without using libusb, saving you a third-party dependency install.

In our exercises, on Github, the solutions look like: ``` {{#include ../../exercise-solutions/green-yellow/src/bin/step3.rs:3:13}} ``` It would be nice if there was some Github-compatible syntax for including files into a markdown file...

# Rust Fundamentals - [X] [Fizzbuzz](https://github.com/ferrous-systems/rust-exercises/blob/main/exercise-book/src/fizzbuzz.md) - [X] [Fizzbuzz with match](https://github.com/ferrous-systems/rust-exercises/blob/main/exercise-book/src/fizzbuzz-match.md) - [x] [Files, match, and Result](https://github.com/ferrous-systems/rust-exercises/blob/main/exercise-book/src/files-match-result.md) - [X] [Rustlatin](https://github.com/ferrous-systems/rust-exercises/blob/main/exercise-book/src/rustlatin.md) - [x] ~Redisish Protocol Parser~ -> [SimpleDB](https://github.com/ferrous-systems/rust-exercises/blob/main/exercise-book/src/simple-db.md) # Applied Rust...