Exercise 3

This commit is contained in:
akshitgautam42 2023-11-11 15:32:59 +05:30
parent 717ccf8dab
commit eb70288e30

View File

@ -5,9 +5,9 @@
// Execute `rustlings hint variables1` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
x = 5;
let x = 5;
println!("x has the value {}", x);
}