feat variable 1

This commit is contained in:
Naima 2022-06-08 18:12:01 +02:00
parent e0c4149df2
commit 653cf04741

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
fn main() { fn main() {
x = 5; let x = 5;
println!("x has the value {}", x); println!("x has the value {}", x);
} }