rust-by-practice icon indicating copy to clipboard operation
rust-by-practice copied to clipboard

Learning Rust By Practice, narrowing the gap between beginner and skilled-dev through challenging examples, exercises and projects.

Results 83 rust-by-practice issues
Sort by recently updated
recently updated
newest added

I was confused by the requirements of this exercise, I wasn't sure whether I'll need to somehow make it output the literal string "97 - 122" or the result of...

minor omission of parenthesis

Chapter 4 has only 3 parts

When I try to run this project localy, everything works except the compile button when offline, there is no reason it should be this way, pls fix

I'm getting `Playground Communication: timeout` on both the practice.rs website as well as my own localhost clone. No further information is provided, and quick googling isn't suggesting anything helpful. How...

https://zh.practice.rs/type-conversions/from-into.html#tryfromtryinto ```rs fn main() { let n: i16 = 256; let n: u8 = match n.try_into() { Ok(n) => n, Err(e) => { println!("there is an error when converting: {:?},...

when I following the readme first git clone the repository to local. then in the local path I opend a cmd to install mdbook when I run the command :...