Adding an additional placeholder "__" on line 22

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
This commit is contained in:
zafar hussain 2022-11-07 13:10:00 +05:00 committed by GitHub
parent 1a5bdaaf77
commit bb7aece3c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ fn main() {
// Fill the blanks in the code to make it compile
fn main() {
let __ = 1;
let __ __ = 1;
__ += 2;
assert_eq!(x, 3);