mirror of
https://github.com/sunface/rust-by-practice.git
synced 2025-06-23 04:29:41 +00:00
Currently, on line 22 there is only a single placeholder "__", whereas the correct answer is "mut x" hence an extra "__" is added line 22 : current : let __ = 1; propose : let __ __ = 1; Correct answer : let mut x = 1; cheers