Fix inconsistent between bash version and rust version of the sample

In the bash version, `y` have value 6, while rust version it has value 7
This commit is contained in:
Tuyen Pham 2021-06-19 20:08:27 +07:00 committed by GitHub
parent e440094b37
commit efb13d7bc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ Will render as
```rust
# fn main() {
let x = 5;
let y = 7;
let y = 6;
println!("{}", x + y);
# }