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

A self-paced course to learn Rust, one exercise at a time.

Results 99 100-exercises-to-learn-rust issues
Sort by recently updated
recently updated
newest added

I have this issue after upgrading my fork. ``` error: manifest path `exercises/04_traits/05_str_slice/Cargo.toml` does not exist ❌ (04) traits - (05) str_slice ``` I only noticed this because of https://rust-exercises.com/04_traits/05_trait_bounds....

…according to MM's CI - [ ] add cover

Chapter 5.5 Nullability https://rust-exercises.com/100-exercises/05_ticket_v2/05_nullability#tuples Clicking the run icon produces: ``` Compiling playground v0.0.1 (/playground) error[E0425]: cannot find value `second` in this scope --> src/main.rs:3:12 | 3 | assert_eq!(second.0, -42); |...

Hi, I'm interested to see this project translated to Spanish. Do you want this? I can offer me as a volunteer to translate it. I'm doing this with the [official...

I've been testing out 100ETLR and am generally really loving it - it hits at exactly the right balance of explanation / exercise / exploration for the people I'm hoping...

enhancement

[In the chapter on async spawn](https://rust-exercises.com/100-exercises/08_futures/02_spawn), there's example code for the function `echoes`: ```rust use tokio::net::TcpListener; pub async fn echo(listener: TcpListener) -> Result { loop { let (mut socket, _)...

Note that all other remaining test functions do suppress return value with an explicit semicolon. However these two don't and the following (I guess still valid?) solution ```rust pub fn...

I struggled to understanding the exercise. The directive is to provide an `iter` method that returns an iterator over `&Ticket` items. The correct answer is ``` pub fn iter(&self) ->...

The binding is never used, we avoid a warning.