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:
parent
e440094b37
commit
efb13d7bc1
|
@ -21,7 +21,7 @@ Will render as
|
||||||
```rust
|
```rust
|
||||||
# fn main() {
|
# fn main() {
|
||||||
let x = 5;
|
let x = 5;
|
||||||
let y = 7;
|
let y = 6;
|
||||||
|
|
||||||
println!("{}", x + y);
|
println!("{}", x + y);
|
||||||
# }
|
# }
|
||||||
|
|
Loading…
Reference in New Issue