Merge pull request #5 from akshitgautam42/Ex-6

Excersie 6
This commit is contained in:
Akshit Gautam 2023-11-11 15:53:41 +05:30 committed by GitHub
commit 2587d93d24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);