variables 4

This commit is contained in:
Paul Scarrone 2023-02-12 19:29:56 -05:00
parent 44eb9f7c3c
commit 62af9047c7

View File

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