erralb

Authored Comments

Hi and thanks for the useful article !

I've had an error with your code at line 7 :
`rng.gen_range(1, 100+1)` had to be changed to `rng.gen_range(1..101)`
(With a fresh Rust install, it's my first time trying the language)

Also, could you explain a bit more the line 10 : `Some(Ok(guess)) = parsed` please ? This is quite obscur to me...