🚧Variables: Exercise 1

This commit is contained in:
ynhhoJ 2022-04-16 11:34:49 +03:00
parent 0b7f3fe37a
commit 5fcf6746ec

View File

@ -2,9 +2,9 @@
// Make me compile! // Make me compile!
// Execute the command `rustlings hint variables1` if you want a hint :) // Execute the command `rustlings hint variables1` if you want a hint :)
// I AM NOT DONE // I AM DONE
fn main() { fn main() {
x = 5; let x = 5;
println!("x has the value {}", x); println!("x has the value {}", x);
} }