Excersie 6

This commit is contained in:
akshitgautam42 2023-11-11 15:48:13 +05:30
parent 65e2d43ac7
commit 1e3e82bb54

View File

@ -3,10 +3,10 @@
// 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);