Update exercises/variables/variables4.rs

Co-authored-by: Paul Scarrone <paul@scarrone.co>
This commit is contained in:
Michael Cain 2023-02-13 09:57:50 -06:00 committed by GitHub
parent 84bdea68e0
commit b410ca2df7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,8 +2,8 @@
// Execute `rustlings hint variables4` or use the `hint` watch subcommand for a hint. // Execute `rustlings hint variables4` or use the `hint` watch subcommand for a hint.
fn main() { fn main() {
let mut x = 3; let x = 3;
println!("Number {}", x); println!("Number {}", x);
x = 5; // don't change this line let x = 5; // don't change this line
println!("Number {}", x); println!("Number {}", x);
} }