book icon indicating copy to clipboard operation
book copied to clipboard

Update chapter02.md

Open MajesticTwelve12 opened this issue 6 months ago • 0 comments

Changed let secret_number = rand::thread_rng().gen_range(1..=100); and gen_range() are depracted since 0.9.0 and should use let secret_number = rand::rng().random_range(1..=100);

Sources

https://docs.rs/rand/latest/rand/fn.thread_rng.html
https://docs.rs/rand/latest/rand/trait.Rng.html#method.gen_range

MajesticTwelve12 avatar Apr 28 '25 12:04 MajesticTwelve12